/** @type {import('next').NextConfig} */ const backendUrl = process.env.BACKEND_URL || "http://localhost:8000"; const nextConfig = { output: "standalone", async rewrites() { return [ { source: "/api/:path*", destination: `${backendUrl}/api/:path*`, }, { source: "/ws", destination: `${backendUrl}/ws`, }, ]; }, }; module.exports = nextConfig;