-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvercel.json
More file actions
37 lines (37 loc) · 825 Bytes
/
vercel.json
File metadata and controls
37 lines (37 loc) · 825 Bytes
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
{
"buildCommand": "curl -sSOL https://cecil.app/build.sh && bash ./build.sh",
"outputDirectory": "_site",
"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"
}
]
}
]
}