forked from climateclock/h4i-uiuc-climate-clock-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vercel.json
33 lines (33 loc) · 839 Bytes
/
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
27
28
29
30
31
32
33
{
"regions": ["iad1"],
"builds": [
{
"src": "client/package.json",
"use": "@now/static-build",
"config": { "distDir": "build" }
}
],
"routes": [
{
"src": "/static/(.*)",
"headers": { "cache-control": "s-maxage=31536000, immutable" },
"dest": "client/static/$1"
},
{ "src": "/favicon.ico", "dest": "client/favicon.ico" },
{
"src": "/asset-manifest.json",
"dest": "client/asset-manifest.json"
},
{
"src": "/precache-manifest.(.*)",
"dest": "client/precache-manifest.$1"
},
{ "src": "/manifest.json", "dest": "client/manifest.json" },
{
"src": "/service-worker.js",
"headers": { "cache-control": "s-maxage=0" },
"dest": "client/service-worker.js"
},
{ "src": "/(.*)", "dest": "client/index.html" }
]
}