-
Notifications
You must be signed in to change notification settings - Fork 0
/
now.json
44 lines (44 loc) · 954 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"version": 2,
"builds": [
{
"src": "package.json",
"use": "@now/static-build"
}
],
"routes": [
{
"src": ".*",
"headers": {
"X-Frame-Options": "DENY",
"Strict-Transport-Security": "max-age=63072000; includeSubDomains; preload",
"X-Content-Type-Options": "nosniff",
"X-XSS-Protection": "1; mode=block"
},
"continue": true
},
{
"src": "\/?$",
"headers": {
"Link": "<https://cdn.jsdelivr.net/npm/yandex-metrica-watch/watch.js>; rel=preconnect, <https://mc.yandex.ru>; rel=preconnect"
}
},
{
"src": "\/.*\\..*$",
"headers": {
"Cache-Control": "public, max-age=31557600"
},
"continue": true
},
{
"src": "\/.*\\.(pdf|txt|xml)$",
"headers": {
"Cache-Control": "public, max-age=17280"
},
"continue": true
},
{
"handle": "filesystem"
}
]
}