import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ reactCompiler: true, async rewrites() { return [ { source: '/api/:path*', destination: `${process.env.API_BASE_URL}/api/:path*`, }, ]; }, }; export default nextConfig;