cds-agent / src /frontend /next.config.js
bshepp
Fix HF Space build: standalone Next.js output, memory limit, disable telemetry
98917ae
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
async rewrites() {
return [
{
source: "/api/:path*",
destination: "http://localhost:8002/api/:path*",
},
];
},
};
module.exports = nextConfig;