gatepass / next.config.ts
rb125
Initial frontend deploy
4c62137
Raw
History Blame Contribute Delete
282 Bytes
/** @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;