17 lines
342 B
TypeScript
17 lines
342 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
async rewrites() {
|
|
const backend = process.env.BACKEND_URL || "http://localhost:18888";
|
|
return [
|
|
{
|
|
source: "/api/:path*",
|
|
destination: `${backend}/api/:path*`,
|
|
},
|
|
];
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|