{ "$schema": "https://openapi.vercel.sh/vercel.json", "framework": "nextjs", "buildCommand": "pnpm build", "installCommand": "pnpm install", "outputDirectory": ".next", "env": { "NEXT_PUBLIC_API_URL": "@api-url" }, "headers": [ { "source": "/(.*)", "headers": [ { "key": "X-Frame-Options", "value": "SAMEORIGIN" }, { "key": "X-Content-Type-Options", "value": "nosniff" }, { "key": "Referrer-Policy", "value": "strict-origin-when-cross-origin" } ] }, { "source": "/_next/static/(.*)", "headers": [ { "key": "Cache-Control", "value": "public, max-age=31536000, immutable" } ] } ], "rewrites": [ { "source": "/api/v1/:path*", "destination": "https://jobportal-api.fly.dev/api/v1/:path*" } ] }