/** * ============================================================================= * QWHPI — Quebec Weekly Housing Price Index * Author : Simon-Pierre Boucher * Contact : contact@spboucher.ai * File : web/next.config.ts * Purpose : Next.js configuration for the QWHPI dashboard. * ============================================================================= */ import type { NextConfig } from "next"; const nextConfig: NextConfig = { reactStrictMode: true, // Single-domain deployments: the dashboard origin proxies API routes to the // local FastAPI process (set NEXT_PUBLIC_API_URL="" at build time). async rewrites() { const api = process.env.QWHPI_API_INTERNAL ?? "http://127.0.0.1:8080"; return [ { source: "/v1/:path*", destination: `${api}/v1/:path*` }, { source: "/docs", destination: `${api}/docs` }, { source: "/openapi.json", destination: `${api}/openapi.json` }, { source: "/health", destination: `${api}/health` }, ]; }, }; export default nextConfig;