-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
24 lines (24 loc) · 952 Bytes
/
vercel.json
File metadata and controls
24 lines (24 loc) · 952 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
{
"version": 2,
"framework": null,
"buildCommand": "npm run vercel-build",
"installCommand": "npm install",
"outputDirectory": "static-build",
"functions": {
"api/index.js": {
"includeFiles": "server/templates/**,public/**,assets/**"
}
},
"rewrites": [
{ "source": "/api/:path*", "destination": "/api/index.js" },
{ "source": "/admin", "destination": "/api/index.js" },
{ "source": "/merchant", "destination": "/api/index.js" },
{ "source": "/driver", "destination": "/api/index.js" },
{ "source": "/developers", "destination": "/api/index.js" },
{ "source": "/legal/:path*", "destination": "/api/index.js" },
{ "source": "/health", "destination": "/api/index.js" },
{ "source": "/api-docs/:path*", "destination": "/api/index.js" },
{ "source": "/widget.js", "destination": "/api/index.js" },
{ "source": "/((?!_expo|assets|images|favicon).*)", "destination": "/index.html" }
]
}