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