/ vercel.json
vercel.json
 1  {
 2    "functions": {
 3      "app/api/analyze-stream/route.ts": { "maxDuration": 600, "memory": 1024 },
 4      "app/api/generate-cv-pdf/route.ts": { "maxDuration": 60, "memory": 512 },
 5      "app/api/generate-cover-letter/route.ts": { "maxDuration": 180 },
 6      "app/api/interview-prep/route.ts": { "maxDuration": 180 },
 7      "app/api/rewrite-cv/route.ts": { "maxDuration": 180 }
 8    },
 9    "crons": [
10      { "path": "/api/cron/reset-quotas", "schedule": "0 0 * * 1" }
11    ]
12  }