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