-
Notifications
You must be signed in to change notification settings - Fork 1
/
vercel.json
41 lines (41 loc) · 833 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
{
"headers": [
{
"source": "/blog/:path*",
"headers": [
{
"key": "Cache-Control",
"value": "max-age=0, s-maxage=604800"
}
]
},
{
"source": "/projects/:path*",
"headers": [
{
"key": "Cache-Control",
"value": "max-age=0, s-maxage=604800"
}
]
},
{
"source": "/snippets/:path*",
"headers": [
{
"key": "Cache-Control",
"value": "max-age=0, s-maxage=604800"
}
]
}
],
"rewrites": [
{
"source": "/api/umami/script.js",
"destination": "https://resilient-lolly-2cb679.netlify.app/umami.js"
},
{
"source": "/api/umami/api/collect",
"destination": "https://resilient-lolly-2cb679.netlify.app/api/collect"
}
]
}