/** @type {import('next').NextConfig} */ const nextConfig = { output: 'standalone', reactStrictMode: true, async rewrites() { return [ { source: '/api/:path*', destination: `${process.env.API_URL || 'http://server:8080'}/api/:path*`, }, ]; }, }; module.exports = nextConfig;