-
-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathvercel.json
More file actions
20 lines (20 loc) · 563 Bytes
/
Copy pathvercel.json
File metadata and controls
20 lines (20 loc) · 563 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"$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
}
]
}