22 lines
431 B
TypeScript
22 lines
431 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const apiUrl = process.env.NEXT_PUBLIC_API_URL ?? "http://localhost:8080";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
async rewrites() {
|
|
return [
|
|
{
|
|
source: "/api/:path*",
|
|
destination: `${apiUrl}/api/:path*`,
|
|
},
|
|
{
|
|
source: "/install",
|
|
destination: `${apiUrl}/install`,
|
|
},
|
|
];
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|