-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvercel.json
More file actions
20 lines (20 loc) · 996 Bytes
/
Copy pathvercel.json
File metadata and controls
20 lines (20 loc) · 996 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"version": 2,
"builds": [
{
"src": "package.json",
"use": "@vercel/static-build",
"config": { "distDir": "public" }
}
],
"routes": [
{ "src": "/atom.xml", "headers": { "content-type": "application/xml; charset=utf-8", "cache-control": "public, max-age=0, must-revalidate" } },
{ "src": "/feed.xsl", "headers": { "content-type": "application/xml; charset=utf-8", "cache-control": "public, max-age=0, must-revalidate" } },
{ "src": "/service-worker.js", "headers": { "cache-control": "no-cache" } },
{ "src": "/workbox-.*.js", "headers": { "cache-control": "no-cache" } },
{ "src": "/js/sw-update.js", "headers": { "cache-control": "no-cache" } },
{ "src": "/css/(.*)", "headers": { "cache-control": "public, max-age=31536000, immutable" } },
{ "src": "/fonts/(.*)", "headers": { "cache-control": "public, max-age=31536000, immutable" } },
{ "src": "/images/(.*)", "headers": { "cache-control": "public, max-age=604800" } }
]
}