forked from nhost/nhost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvercel.json
120 lines (120 loc) · 3 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
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"cleanUrls": true,
"redirects": [
{
"source": "/get-started/quick-start",
"destination": "https://nhost.io/blog/nhost-understanding-the-basics",
"permanent": true
},
{
"source": "/get-started/quick-start/:path*",
"destination": "https://nhost.io/blog/nhost-understanding-the-basics",
"permanent": true
},
{
"source": "/get-started/cli-workflow",
"destination": "/platform/overview/get-started-with-nhost-cli",
"permanent": true
},
{
"source": "/get-started/cli-workflow/:path*",
"destination": "/platform/overview/get-started-with-nhost-cli",
"permanent": true
},
{
"source": "/get-started/upgrade",
"destination": "https://nhost.io/blog/migrate-from-nhost-v1-to-v2",
"permanent": true
},
{
"source": "/reference/sdk/:path*",
"destination": "/reference/javascript/:path*",
"permanent": true
},
{
"source": "/reference/sdk/authentication",
"destination": "/reference/javascript/auth",
"permanent": true
},
{
"source": "/reference/react/hooks",
"destination": "/reference/react",
"permanent": true
},
{
"source": "/reference/hasura-auth",
"destination": "https://github.com/nhost/hasura-auth",
"permanent": true
},
{
"source": "/reference/hasura-auth/:path*",
"destination": "https://github.com/nhost/hasura-auth",
"permanent": true
},
{
"source": "/platform/overview/architecture",
"destination": "/",
"permanent": true
},
{
"source": "/platform/overview/get-started-with-nhost-cli",
"destination": "/cli/local-development",
"permanent": true
},
{
"source": "/platform/quickstarts/:framework",
"destination": "/quickstarts/:framework",
"permanent": true
},
{
"source": "/platform/database",
"destination": "/database",
"permanent": true
},
{
"source": "/platform/database/:path",
"destination": "/database/:path",
"permanent": true
},
{
"source": "/platform/graphql",
"destination": "/graphql",
"permanent": true
},
{
"source": "/platform/graphql/:path",
"destination": "/graphql/:path",
"permanent": true
},
{
"source": "/platform/authentication",
"destination": "/authentication",
"permanent": true
},
{
"source": "/platform/authentication/:path",
"destination": "/authentication/:path",
"permanent": true
},
{
"source": "/platform/storage",
"destination": "/storage",
"permanent": true
},
{
"source": "/platform/serverless-functions",
"destination": "/serverless-functions",
"permanent": true
},
{
"source": "/platform/github-integration",
"destination": "/platform/git",
"permanent": true
},
{
"source": "/platform/cli",
"destination": "/cli",
"permanent": true
}
]
}