-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnow.json
35 lines (35 loc) · 888 Bytes
/
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
{
"name": "api",
"version": 2,
"scope": "secretary",
"alias": ["api.secretary.dev"],
"regions": ["all"],
"builds": [
{
"src": "src/main.ts",
"use": "@now/node-server@canary"
}
],
"env": {
"sm_access_key_id": "@website_sm_access_key_id",
"sm_secret_access_key": "@website_sm_secret_access_key",
"userPoolId": "@website_user_pool_id",
"userPoolWebClientId": "@website_user_pool_web_client_id"
},
"routes": [
{
"src": "/",
"dest": "/src/main.ts",
"headers": {
"x-request-path": "/"
}
},
{
"src": "/(.*)",
"dest": "/src/main.ts",
"headers": {
"x-request-path": "$1"
}
}
]
}