-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathnow.json
16 lines (16 loc) · 839 Bytes
/
now.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"name": "ipfs-browser-gateway",
"version": 2,
"public": true,
"builds": [{ "src": "package.json", "use": "@now/static-build", "config": { "distDir": "build" } }],
"routes": [
{ "src": "/static/(.*)", "headers": { "cache-control": "s-maxage=31536000,immutable" }, "dest": "/static/$1" },
{ "src": "/ico.png", "dest": "/ico.png" },
{ "src": "/asset-manifest.json", "dest": "/asset-manifest.json" },
{ "src": "/manifest.json", "dest": "/manifest.json" },
{ "src": "/precache-manifest.(.*)", "dest": "/precache-manifest.$1" },
{ "src": "/sw.js", "headers": { "cache-control": "s-maxage=0" }, "dest": "/sw.js" },
{ "src": "/sw.js.map", "headers": { "cache-control": "s-maxage=0" }, "dest": "/sw.js.map" },
{ "src": "/(.*)", "headers": { "cache-control": "s-maxage=0" }, "dest": "/index.html" }
]
}