nomadweb/frontend/next.config.ts
2026-08-28 19:49:10 -05:00

16 lines
308 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
async rewrites() {
return [
{
source: "/api/:path*",
destination: `${process.env.API_URL || "http://localhost:8000"}/api/:path*`,
},
];
},
};
export default nextConfig;