forked from OperationCode/front-end
-
Notifications
You must be signed in to change notification settings - Fork 0
/
now.json
28 lines (28 loc) · 814 Bytes
/
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
{
"version": 2,
"name": "operation-code",
"alias": ["operation-code.now.sh", "www.operationcode.org", "operationcode.org"],
"builds": [{ "src": "package.json", "use": "@now/next@canary" }],
"routes": [
{
"src": "/_next/static/(?:[^/]+/pages|chunks|runtime|css|fonts)/.+",
"headers": { "cache-control": "max-age=31536000" }
},
{
"src": "^/(favicon.ico|robots.txt|manifest.json|humans.txt|sitemap.xml|sitemap.xsl)$",
"dest": "/$1",
"headers": { "cache-control": "max-age=10000 must-revalidate" }
},
{
"src": "/media",
"dest": "/branding"
},
{
"src": "/privacy",
"dest": "https://www.iubenda.com/privacy-policy/8174861"
},
{ "handle": "filesystem" },
{ "src": "/*/.*", "dest": "/_error" }
],
"public": true
}