import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "standalone", turbopack: { root: __dirname, }, async rewrites() { const apiBase = process.env.NEXT_PUBLIC_API_URL || "http://localhost:8080"; return [ { source: "/api/:path*", destination: `${apiBase}/api/:path*`, }, ]; }, }; export default nextConfig;