/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, experimental: { outputStandalone: true, }, async rewrites() { return [ { source: "/api/:path*", destination: "http://localhost:3000/:path*", }, ]; }, }; module.exports = nextConfig;