-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
55 lines (55 loc) · 2.1 KB
/
Copy pathvercel.json
File metadata and controls
55 lines (55 loc) · 2.1 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
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"buildCommand": "npm run build",
"outputDirectory": "dist",
"cleanUrls": true,
"trailingSlash": false,
"redirects": [
{ "source": "/index.html", "destination": "/", "permanent": true },
{ "source": "/home.html", "destination": "/home", "permanent": true },
{ "source": "/play.html", "destination": "/play", "permanent": true },
{ "source": "/play", "destination": "/home", "permanent": true },
{ "source": "/about.html", "destination": "/about", "permanent": true },
{ "source": "/updates.html", "destination": "/updates", "permanent": true },
{ "source": "/terms.html", "destination": "/terms", "permanent": true },
{ "source": "/membership.html", "destination": "/membership", "permanent": true },
{ "source": "/avatar.html", "destination": "/avatar", "permanent": true },
{ "source": "/chat.html", "destination": "/chat", "permanent": true },
{ "source": "/friends.html", "destination": "/friends", "permanent": true },
{ "source": "/search.html", "destination": "/search", "permanent": true },
{ "source": "/settings.html", "destination": "/settings", "permanent": true },
{ "source": "/store.html", "destination": "/store", "permanent": true }
],
"headers": [
{
"source": "/(.*\\.html)",
"headers": [
{ "key": "Cache-Control", "value": "no-cache, no-store, must-revalidate" }
]
},
{
"source": "/",
"headers": [
{ "key": "Cache-Control", "value": "no-cache, no-store, must-revalidate" }
]
},
{
"source": "/updates",
"headers": [
{ "key": "Cache-Control", "value": "no-cache, must-revalidate" }
]
},
{
"source": "/assets/(.*)",
"headers": [
{ "key": "Cache-Control", "value": "public, max-age=31536000, immutable" }
]
},
{
"source": "/_astro/(.*)",
"headers": [
{ "key": "Cache-Control", "value": "public, max-age=31536000, immutable" }
]
}
]
}