-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvercel.json
26 lines (26 loc) · 3.8 KB
/
vercel.json
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
{
"version": 2,
"builds": [
{
"src": "backend/app.py",
"use": "@vercel/python"
},
{
"src": "package.json",
"use": "@vercel/static-build",
"config": {
"distDir": "build"
}
}
],
"routes": [
{
"src": "/backend/(.*)",
"dest": "/backend/app.py"
},
{
"src": "/(.*)",
"dest": "/$1"
}
]
}