forked from zenstackhq/zenstack-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
31 lines (31 loc) · 1.29 KB
/
vercel.json
File metadata and controls
31 lines (31 loc) · 1.29 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
{
"trailingSlash": false,
"redirects": [
{ "source": "/docs", "destination": "/docs/welcome" },
{ "source": "/docs/category/get-started", "destination": "/docs/category/quick-start", "permanent": true },
{ "source": "/docs/get-started/:path*", "destination": "/docs/quick-start/:path*", "permanent": true },
{ "source": "/docs/category/guides", "destination": "/docs/category/recipes", "permanent": true },
{ "source": "/docs/intro", "destination": "/docs", "permanent": true },
{
"source": "/docs/intro/prisma-crash-course",
"destination": "/docs/the-complete-guide/part1/prisma",
"permanent": true
},
{
"source": "/docs/intro/zmodel",
"destination": "/docs/the-complete-guide/part1/zmodel",
"permanent": true
},
{
"source": "/docs/intro/api",
"destination": "/docs/the-complete-guide/part3/",
"permanent": true
},
{
"source": "/docs/intro/frontend",
"destination": "/docs/the-complete-guide/part4/",
"permanent": true
},
{ "source": "/docs/guides/authentication/:path*", "destination": "/docs/quick-start/authentication/:path*", "permanent": true }
]
}