-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnow.json
62 lines (61 loc) · 1.7 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"version": 2,
"env": {
"FIREBASE_PROJECT_ID": "@firebase_project_id",
"FIREBASE_PRIVATE_KEY_ID": "@firebase_private_key_id",
"FIREBASE_PRIVATE_KEY": "@firebase_private_key",
"FIREBASE_CLIENT_EMAIL": "@firebase_client_email",
"FIREBASE_CLIENT_ID": "@firebase_client_id",
"FIREBASE_CLIENT_X509_CERT_URL": "@firebase_client_x509_cert_url"
},
"routes": [
{
"src": "^/service-worker.js$",
"dest": "/_next/static/service-worker.js",
"headers": {
"cache-control": "public, max-age=0, immutable",
"Service-Worker-Allowed": "/"
}
},
{
"src": "^/build-manifest.json$",
"dest": "/_next/build-manifest.json",
"headers": {
"cache-control": "public, max-age=0, immutable",
"Service-Worker-Allowed": "/"
}
},
{
"src": "^/react-loadable-manifest.json$",
"dest": "/_next/react-loadable-manifest.json",
"headers": {
"cache-control": "public, max-age=0, immutable",
"Service-Worker-Allowed": "/"
}
},
{
"src": "^/firebase-messaging-sw.js$",
"dest": "/_next/static/firebase-messaging-sw.js",
"headers": {
"cache-control": "public, max-age=0, immutable",
"Service-Worker-Allowed": "/"
}
},
{
"src": "^/manifest.json$",
"dest": "/_next/static/manifest.json",
"headers": {
"cache-control": "public, max-age=0, immutable",
"Service-Worker-Allowed": "/"
}
},
{
"src": "^/.well-known/assetlinks.json$",
"dest": "/_next/static/assetlinks.json",
"headers": {
"cache-control": "public, max-age=0, immutable",
"Service-Worker-Allowed": "/"
}
}
]
}