import type { NextConfig } from "next"; const nextConfig: NextConfig = { async rewrites() { const apiPort = process.env.API_PORT || '8000'; return [ { source: '/api/:path*', destination: `http://localhost:${apiPort}/api/:path*`, }, ] }, }; export default nextConfig;