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