/** @type {import('next').NextConfig} */ const nextConfig = { output: 'standalone', reactStrictMode: false, swcMinify: true, eslint: { ignoreDuringBuilds: true, }, async rewrites() { return [ { source: "/api/:path*", destination: "http://backend:8000/:path*", // internal Docker hostname }, ] }, }; module.exports = nextConfig;