import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "standalone", async rewrites() { return [ { source: "/api/:path*", destination: "http://localhost:8000/api/:path*", // FastAPI backend }, ]; }, }; export default nextConfig;