generated from ewpratten/vercel_python_api_template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
now.json
44 lines (44 loc) · 1.24 KB
/
now.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"version": 2,
"name": "oui_api",
"builds": [
{
"src": "static/*",
"use": "@vercel/static"
},
{
"src": "static/js/*",
"use": "@vercel/static"
},
{
"src": "static/css/*",
"use": "@vercel/static"
},
{
"src": "api/__main__.py",
"use": "@now/python@canary"
}
],
"routes": [
{
"src": "/.*",
"dest": "/api/__main__.py",
"headers": {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Headers": "Origin, X-Requested-With, Content-Type, Accept, Authorization",
"RetryLife-Service-Source": "lambda",
"Access-Control-Allow-Credentials": "true"
}
},
{
"src": "/",
"dest": "/api/__main__.py",
"headers": {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Headers": "Origin, X-Requested-With, Content-Type, Accept, Authorization",
"RetryLife-Service-Source": "lambda",
"Access-Control-Allow-Credentials": "true"
}
}
]
}