-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathvercel.json
More file actions
38 lines (38 loc) · 981 Bytes
/
vercel.json
File metadata and controls
38 lines (38 loc) · 981 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
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"buildCommand": "npm run db:migrate && npx expo export -p web --output-dir .vercel/output/static && npx tsx scripts/set-webhook.ts",
"outputDirectory": ".vercel/output/static",
"framework": null,
"installCommand": "npm install",
"rewrites": [
{
"source": "/api/kms/ping",
"destination": "/api/wallet-envelope-ping"
},
{
"source": "/api/kms-ping",
"destination": "/api/wallet-envelope-ping"
},
{
"source": "/api/kmsping",
"destination": "/api/wallet-envelope-ping"
},
{
"source": "/api/kmsprobe",
"destination": "/api/wallet-envelope-probe"
},
{
"source": "/api/kms-roundtrip",
"destination": "/api/wallet-envelope-roundtrip"
},
{
"source": "/((?!api/|_expo/|assets/|.*\\..*).*)",
"destination": "/index.html"
}
],
"functions": {
"api/[...path].ts": {
"maxDuration": 60
}
}
}