-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
61 lines (61 loc) · 2.56 KB
/
Copy pathvercel.json
File metadata and controls
61 lines (61 loc) · 2.56 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"outputDirectory": "web",
"cleanUrls": false,
"trailingSlash": false,
"redirects": [
{ "source": "/campaign", "destination": "/", "permanent": true },
{ "source": "/foundation-campaign", "destination": "/", "permanent": true },
{ "source": "/foundation-campaign/", "destination": "/", "permanent": true },
{ "source": "/discovery", "destination": "/discovery/", "permanent": true },
{ "source": "/legacy", "destination": "/legacy/", "permanent": true },
{ "source": "/raise", "destination": "/#tiers", "permanent": true },
{ "source": "/crypto", "destination": "/donate-crypto/", "permanent": true },
{ "source": "/vision", "destination": "/discovery/skill-exchange-vision.html", "permanent": true },
{ "source": "/models", "destination": "/discovery/skill-exchange-models.html", "permanent": true },
{ "source": "/landscape", "destination": "/discovery/impact-org-landscape.html", "permanent": true },
{ "source": "/mystichearts/demo", "destination": "/mystichearts/demo/", "permanent": true },
{ "source": "/kitties", "destination": "/kitties/game/", "permanent": true },
{ "source": "/kitties/", "destination": "/kitties/game/", "permanent": true },
{ "source": "/kitties/game", "destination": "/kitties/game/", "permanent": true },
{ "source": "/games", "destination": "/kitties/game/", "permanent": true },
{ "source": "/games/", "destination": "/kitties/game/", "permanent": true }
],
"rewrites": [
{
"source": "/",
"has": [{ "type": "host", "value": "kitties.handprotocol.org" }],
"destination": "/kitties/game/index.html"
},
{ "source": "/", "destination": "/foundation-campaign/index.html" }
],
"headers": [
{
"source": "/(.*)",
"headers": [
{ "key": "X-Frame-Options", "value": "SAMEORIGIN" },
{ "key": "X-Content-Type-Options", "value": "nosniff" },
{ "key": "Referrer-Policy", "value": "strict-origin-when-cross-origin" },
{ "key": "Permissions-Policy", "value": "geolocation=(), microphone=(), camera=(), payment=()" }
]
},
{
"source": "/assets/(.*)",
"headers": [
{ "key": "Cache-Control", "value": "public, max-age=31536000, immutable" }
]
},
{
"source": "/(.*\\.html)",
"headers": [
{ "key": "Cache-Control", "value": "public, max-age=300, must-revalidate" }
]
},
{
"source": "/(.*\\.(css|js))",
"headers": [
{ "key": "Cache-Control", "value": "public, max-age=86400" }
]
}
]
}