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