-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvercel.json
More file actions
42 lines (42 loc) · 706 Bytes
/
Copy pathvercel.json
File metadata and controls
42 lines (42 loc) · 706 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,
"name": "fairforge-arena",
"builds": [
{
"src": "api/index.py",
"use": "@vercel/python",
"config": {
"maxLambdaSize": "50mb"
}
},
{
"src": "frontend/index.html",
"use": "@vercel/static"
}
],
"routes": [
{
"src": "/api/(.*)",
"dest": "api/index.py"
},
{
"src": "/",
"dest": "frontend/index.html"
},
{
"src": "/(.*)",
"dest": "frontend/index.html"
}
],
"env": {
"MONGO_URL": "@mongo_url",
"DB_NAME": "@db_name",
"CORS_ORIGINS": "@cors_origins"
},
"functions": {
"api/index.py": {
"maxDuration": 30,
"memory": 1024
}
}
}