Skip to content

Commit 97ef52a

Browse files
committed
Create vercel.json
1 parent 5e6e97d commit 97ef52a

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

apps/web/vercel.json

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"crons": [
3+
{
4+
"path": "/api/cron/domains/verify",
5+
"schedule": "0 * * * *"
6+
},
7+
{
8+
"path": "/api/cron/usage",
9+
"schedule": "0 12 * * *"
10+
},
11+
{
12+
"path": "/api/cron/cleanup",
13+
"schedule": "0 */6 * * *"
14+
},
15+
{
16+
"path": "/api/cron/disposable-emails",
17+
"schedule": "0 12 * * 1"
18+
}
19+
],
20+
"functions": {
21+
"app/api/cron/**/*.ts": {
22+
"maxDuration": 300
23+
}
24+
}
25+
}

0 commit comments

Comments
 (0)