forked from vuetifyjs/vuetify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vercel.json
53 lines (53 loc) · 1016 Bytes
/
vercel.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
{
"version": 2,
"cleanUrls": true,
"trailingSlash": true,
"rewrites": [
{
"source": "/(.*)",
"destination": "$1"
},
{
"source": "/((?!assets/).*)",
"destination": "/_fallback"
}
],
"headers": [
{
"source": "/(.*)",
"headers" : [
{
"key" : "Cache-Control",
"value" : "public, max-age=3600, must-revalidate"
}
]
},
{
"source": "[a-z0-9]{8}\\.(js|css)(\\.map)?",
"headers" : [
{
"key" : "Cache-Control",
"value" : "public, max-age=31536000, immutable"
}
]
},
{
"source": "/service-worker.js",
"headers" : [
{
"key" : "Cache-Control",
"value" : "public, max-age=0, s-maxage=0, must-revalidate"
},
{
"key" : "CDN-Cache-Control",
"value" : "max-age=0"
}
]
}
],
"github": {
"enabled": false,
"autoAlias": false,
"silent": true
}
}