-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathvercel.json
More file actions
44 lines (44 loc) · 1.09 KB
/
vercel.json
File metadata and controls
44 lines (44 loc) · 1.09 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
{
"cleanUrls": true,
"framework": "vitepress",
"buildCommand": "pnpm run build",
"outputDirectory": ".vitepress/dist",
"installCommand": "pnpm install",
"headers": [
{
"source": "/imgs/(.*)",
"headers": [
{
"key": "Cache-Control",
"value": "max-age=31536000, immutable"
}
]
}
],
"redirects": [
{
"source": "/sb3",
"destination": "/modpacks/sb3",
"permanent": true
},
{
"source": "/modpacks/:modpack/update.txt",
"destination": "https://gitee.com/Wulian233/vmtu/raw/main/update/:modpack.txt",
"permanent": true
},
{
"source": "/name.json",
"destination": "https://gitee.com/Wulian233/vmtu/raw/main/name.json",
"permanent": true
},
{
"source": "/tips.txt",
"destination": "https://gitee.com/Wulian233/vmtu/raw/main/tips.txt",
"permanent": true
}
],
"rewrites": [
{ "source": "/proxy/:match/:url*", "destination": "https://:match/:url*" },
{ "source": "/proxy/:match/:url*/", "destination": "https://:match/:url*/" }
]
}