-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathvercel.json
43 lines (41 loc) · 1.08 KB
/
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
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"rewrites": [
{
"source": "/(account|add|extension|join|my|settings|suggestions)(/.*)?",
"destination": "/index.html"
},
{
"source": "/pb/site.js",
"destination": "https://plausible.io/js/plausible.exclusions.js"
},
{
"source": "/pb/hash.js",
"destination": "https://plausible.io/js/plausible.hash.exclusions.js"
},
{
"source": "/pb/api/event",
"destination": "https://plausible.io/api/event"
}
],
"headers": [
{
"source": "/(.*)",
"headers": [
{
"key": "X-Frame-Options",
"value": "DENY"
}
]
},
{
"source": "/assets/(.*)",
"headers": [
{
"key": "Cache-Control",
"value": "public, max-age=365000000, immutable"
}
]
}
]
}