AQI_Predictor_Qamar / frontend /next.config.mjs
github-actions[bot]
Automated backend deployment for 2026-04-09
e7b1055
raw
history blame contribute delete
368 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
// This rewrite configuration is the "bridge" for local development
async rewrites() {
return [
{
source: '/api/:path*',
destination: 'http://localhost:8000/api/:path*', // Proxy to your FastAPI server
},
]
},
};
export default nextConfig;