/** @type {import('next').NextConfig} */ const nextConfig = { output: 'standalone', images: { domains: ['localhost'], }, async rewrites() { return [ { source: '/api/:path*', destination: 'http://backend:8000/api/:path*', }, ]; }, }; module.exports = nextConfig;