akiyama.mizuki.guru/apps/frontend/next.config.ts
2026-04-16 00:07:00 +09:00

16 lines
309 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
reactCompiler: true,
async rewrites() {
return [
{
source: '/api/:path*',
destination: `${process.env.API_BASE_URL}/:path*`,
},
];
},
};
export default nextConfig;