-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
16 lines (16 loc) · 805 Bytes
/
Copy pathvercel.json
File metadata and controls
16 lines (16 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"regions": ["bom1"],
"functions": {
"app/api/billing/webhook/route.ts": { "maxDuration": 30 },
"app/api/invoices/[id]/pdf/route.ts": { "maxDuration": 60 },
"app/api/exports/[entity]/route.ts": { "maxDuration": 60 },
"app/api/cron/analytics-daily-rollup/route.ts": { "maxDuration": 300 },
"app/api/cron/daily-expirations/route.ts": { "maxDuration": 300 },
"app/api/cron/monthly-rollover/route.ts": { "maxDuration": 300 },
"app/api/cron/nightly-housekeeping/route.ts": { "maxDuration": 300 },
"app/api/cron/payment-method-reminders/route.ts": { "maxDuration": 300 },
"app/api/cron/support-sla-sweep/route.ts": { "maxDuration": 300 },
"app/api/cron/task-notifications/route.ts": { "maxDuration": 300 }
}
}