-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnow.json
More file actions
28 lines (28 loc) · 780 Bytes
/
now.json
File metadata and controls
28 lines (28 loc) · 780 Bytes
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
{
"version": 2,
"name": "uOS",
"alias": ["uos.now.sh"],
"builds": [
{
"src": "package.json",
"use": "@now/static-build"
}
],
"routes": [
{ "src": "^/static/(.*)", "dest": "/static/$1" },
{ "src": "^/favicon.ico", "dest": "/favicon.ico" },
{ "src": "^/icon-192x192.png", "dest": "/icon-192x192.png" },
{ "src": "^/asset-manifest.json", "dest": "/asset-manifest.json" },
{ "src": "^/manifest.json", "dest": "/manifest.json" },
{
"src": "^/service-worker.js",
"headers": { "cache-control": "s-maxage=0" },
"dest": "/service-worker.js"
},
{ "src": "^/precache-manifest.(.*)", "dest": "/precache-manifest.$1" },
{ "src": "^/(.*)", "dest": "/index.html" }
],
"github": {
"silent": true
}
}