-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
vercel.json
30 lines (30 loc) · 1.16 KB
/
vercel.json
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
{
"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
}
]
}