plebdevs/vercel.json

19 lines
309 B
JSON
Raw Normal View History

{
"version": 2,
"crons": [
{
"path": "/api/users/subscription/cron",
"schedule": "0 0 * * *"
},
{
"path": "/api/invoices/polling",
"schedule": "*/10 * * * *"
}
],
"functions": {
"src/pages/api/invoices/short-poll.js": {
"maxDuration": 120
}
}
}