forked from hey-api/openapi-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
47 lines (47 loc) · 1.25 KB
/
vercel.json
File metadata and controls
47 lines (47 loc) · 1.25 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
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"buildCommand": "pnpm --filter @docs/openapi-ts build",
"cleanUrls": true,
"devCommand": "pnpm --filter @docs/openapi-ts dev",
"framework": "vitepress",
"installCommand": "pnpm install --filter @docs/openapi-ts",
"outputDirectory": "docs/.vitepress/dist",
"redirects": [
{
"source": "/openapi-ts",
"destination": "/openapi-ts/get-started",
"permanent": true
},
{
"source": "/openapi-ts/custom-plugin",
"destination": "/openapi-ts/plugins/custom",
"permanent": true
},
{
"source": "/openapi-ts/plugins",
"destination": "/openapi-ts/core",
"permanent": true
},
{
"source": "/openapi-ts/output/json-schema",
"destination": "/openapi-ts/plugins/schemas",
"permanent": true
},
{
"source": "/openapi-ts/output/sdk",
"destination": "/openapi-ts/plugins/sdk",
"permanent": true
},
{
"source": "/openapi-ts/transformers",
"destination": "/openapi-ts/plugins/transformers",
"permanent": true
},
{
"source": "/openapi-ts/output/typescript",
"destination": "/openapi-ts/plugins/typescript",
"permanent": true
}
],
"trailingSlash": false
}