akiyama.mizuki.guru/apps/frontend/next.config.ts
2026-04-15 00:56:08 +09:00

16 lines
303 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
reactCompiler: true,
async rewrites() {
return [
{
source: '/api/:path*',
destination: 'http://localhost:1108/:path*',
},
];
},
};
export default nextConfig;