-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
vercel.json
44 lines (44 loc) · 1015 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
{
"builds": [{
"src": "package.json",
"use": "@vercel/static-build",
"config": { "distDir": "_site" }
}],
"redirects": [
{ "source": "/slack", "destination": "https://jamstatic.herokuapp.com" },
{ "source": "/slack/", "destination": "https://jamstatic.herokuapp.com" }
],
"headers": [
{
"source": "/:all*(svg|jpg|jpeg|gif|png|webp|css|mp4|webm|woff|woff2|ttf|eot|ico|js|json|xml)",
"headers": [
{
"key": "Cache-Control",
"value": "public, max-age=31536000"
}
]
},
{
"source": "/manifest.webmanifest",
"headers": [
{
"key": "Content-Type",
"value": "application/manifest+json"
},
{
"key": "Cache-Control",
"value": "private, max-age=31536000"
}
]
},
{
"source": "/serviceworker.js",
"headers": [
{
"key": "Cache-Control",
"value": "private, max-age=0"
}
]
}
]
}