/** @type {import('next').NextConfig} */ const nextConfig = { output: "standalone", async rewrites() { return [ { source: "/api/:path*", destination: "https://rb512-gatepass-backend.hf.space/:path*", }, ]; }, }; export default nextConfig;