-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
42 lines (42 loc) · 894 Bytes
/
Copy pathvercel.json
File metadata and controls
42 lines (42 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"version": 2,
"buildCommand": "cd apps/web && npm install --legacy-peer-deps && npm run build",
"outputDirectory": "apps/web/build/client",
"installCommand": "cd apps/web && npm install --legacy-peer-deps",
"framework": null,
"functions": {
"apps/web/api/*.js": {
"runtime": "nodejs20.x",
"maxDuration": 10
}
},
"routes": [
{
"src": "/api/health",
"dest": "/apps/web/api/health.js"
},
{
"src": "/api/monasteries",
"dest": "/apps/web/api/monasteries.js"
},
{
"src": "/api/bookings",
"dest": "/apps/web/api/bookings.js"
},
{
"src": "/api/events",
"dest": "/apps/web/api/events.js"
},
{
"src": "/api/archives",
"dest": "/apps/web/api/archives.js"
},
{
"handle": "filesystem"
},
{
"src": "/(.*)",
"dest": "/index.html"
}
]
}