-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathnow.json
More file actions
43 lines (43 loc) · 1.18 KB
/
now.json
File metadata and controls
43 lines (43 loc) · 1.18 KB
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
{
"version": 2,
"scope": "jobcore",
"builds": [
{
"src": "package.json",
"use": "@now/static-build",
"config": { "distDir": "public" }
}
],
"build": {
"env": {
"API_HOST": "@api_host",
"GOOGLE_MAPS_WEB_KEY": "@google_maps_web_key",
"PLAID_PUBLIC_KEY": "@plaid_public_key",
"PLAID_ENVIRONMENT": "@plaid_environment",
"APPSTORE_APP_URL": "@appstore_app_url",
"ANDROID_APP_URL": "@android_app_url"
}
},
"routes": [
{
"src":"/(.*).png",
"headers": { "cache-control": "s-maxage=31536000,immutable" },
"dest":"/$1.png"
},
{
"src":"/(.*).gif",
"headers": { "cache-control": "s-maxage=31536000,immutable" },
"dest":"/$1.gif"
},
{
"src":"/(.*).bundle.js",
"headers": { "cache-control": "s-maxage=31536000,immutable" },
"dest":"/$1.bundle.js"
},
{
"src": "/(.*)",
"headers": { "cache-control": "s-maxage=0" },
"dest": "/index.html"
}
]
}