-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathvercel.json
More file actions
58 lines (58 loc) · 1.66 KB
/
Copy pathvercel.json
File metadata and controls
58 lines (58 loc) · 1.66 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
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"installCommand": "pnpm install --frozen-lockfile",
"buildCommand": "pnpm run build:docs",
"outputDirectory": "docs/build",
"framework": null,
"ignoreCommand": "git diff --quiet HEAD^ HEAD -- docs/ pnpm-lock.yaml",
"redirects": [
{
"source": "/docs/tutorial-extras/help",
"destination": "/docs/reference/faq",
"permanent": true
},
{
"source": "/zh/docs/tutorial-extras/help",
"destination": "/zh/docs/reference/faq",
"permanent": true
},
{
"source": "/docs/tutorial-extras/client-package",
"destination": "/docs/developer-guide/theme-development",
"permanent": true
},
{
"source": "/zh/docs/tutorial-extras/client-package",
"destination": "/zh/docs/developer-guide/theme-development",
"permanent": true
},
{
"source": "/docs/tutorial-extras/server-package",
"destination": "/docs/tutorial-extras/migration-2-to-3",
"permanent": true
},
{
"source": "/zh/docs/tutorial-extras/server-package",
"destination": "/zh/docs/tutorial-extras/migration-2-to-3",
"permanent": true
}
],
"headers": [
{
"source": "/blog/rss.xml",
"headers": [{ "key": "X-Robots-Tag", "value": "noindex, follow" }]
},
{
"source": "/blog/atom.xml",
"headers": [{ "key": "X-Robots-Tag", "value": "noindex, follow" }]
},
{
"source": "/zh/blog/rss.xml",
"headers": [{ "key": "X-Robots-Tag", "value": "noindex, follow" }]
},
{
"source": "/zh/blog/atom.xml",
"headers": [{ "key": "X-Robots-Tag", "value": "noindex, follow" }]
}
]
}