-
Notifications
You must be signed in to change notification settings - Fork 158
/
vercel.json
187 lines (187 loc) · 4.82 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
{
"github": {
"silent": true
},
"redirects": [
{
"source": "/docs/",
"destination": "/docs/getting-started/introduction",
"permanent": false
},
{
"source": "/docs/getting-started",
"destination": "/docs/getting-started/introduction",
"permanent": false
},
{
"source": "/docs/guide",
"destination": "/docs/guide/concepts/auto-imports",
"permanent": false
},
{
"source": "/docs/guide/concepts",
"destination": "/docs/guide/concepts/auto-imports",
"permanent": false
},
{
"source": "/docs/api",
"destination": "/docs/api/composables/use-app-config",
"permanent": false
},
{
"source": "/docs/api/composables",
"destination": "/docs/api/composables/use-app-config",
"permanent": false
},
{
"source": "/docs/api/components",
"destination": "/docs/api/components/client-only",
"permanent": false
},
{
"source": "/docs/examples",
"destination": "/docs/examples/hello-world",
"permanent": false
},
{
"source": "/docs/examples/essentials",
"destination": "/docs/examples/essentials/hello-world",
"permanent": false
},
{
"source": "/docs/community",
"destination": "/docs/community/getting-help",
"permanent": false
},
{
"source": "/enterprise",
"destination": "/enterprise/support",
"permanent": false
},
{
"source": "/docs/guide/directory-structure/app.config",
"destination": "/docs/guide/directory-structure/app-config",
"permanent": false
},
{
"source": "/docs/api/configuration/nuxt.config",
"destination": "/docs/api/configuration/nuxt-config",
"permanent": false
},
{
"source": "/docs/guide/going-further/edge-channel",
"destination": "/docs/guide/going-further/nightly-release-channel",
"permanent": false
},
{
"source": "/docs/modules",
"destination": "/modules",
"permanent": false
},
{
"source": "/docs/concepts/typescript",
"destination": "/docs/guide/concepts/typescript",
"permanent": false
},
{
"source": "/enterprise/workshop",
"destination": "/enterprise/courses",
"permanent": false
},
{
"source": "/shop/beanie",
"destination": "https://nuxt.gumroad.com/l/beanie",
"permanent": false
},
{
"source": "/shop",
"destination": "https://nuxt.gumroad.com/l/ams-beanie",
"permanent": false
},
{
"source": "/v3",
"destination": "/blog/v3",
"permanent": false
},
{
"source": "/vision-2023",
"destination": "/blog/vision-2023",
"permanent": false
},
{
"source": "/docs/examples/essentials/hello-world",
"destination": "/docs/examples/hello-world",
"permanent": false
},
{
"source": "/docs/examples/auto-imports/components",
"destination": "/docs/examples/features/auto-imports",
"permanent": false
},
{
"source": "/docs/examples/auto-imports/composables",
"destination": "/docs/examples/features/auto-imports",
"permanent": false
},
{
"source": "/docs/examples/composables/use-async-data",
"destination": "/docs/examples/features/data-fetching",
"permanent": false
},
{
"source": "/docs/examples/composables/use-fetch",
"destination": "/docs/examples/features/data-fetching",
"permanent": false
},
{
"source": "/docs/examples/composables/use-state",
"destination": "/docs/examples/features/state-management",
"permanent": false
},
{
"source": "/docs/examples/app/app-config",
"destination": "/docs/examples/hello-world",
"permanent": false
},
{
"source": "/docs/examples/app/plugins",
"destination": "/docs/examples/hello-world",
"permanent": false
},
{
"source": "/docs/examples/routing/nuxt-link",
"destination": "/docs/examples/hello-world",
"permanent": false
},
{
"source": "/docs/examples/routing/layouts",
"destination": "/docs/examples/features/layouts",
"permanent": false
},
{
"source": "/docs/examples/server/routes",
"destination": "/docs/examples/hello-world",
"permanent": false
},
{
"source": "/support",
"destination": "/enterprise/support",
"permanent": false
},
{
"source": "/support/us",
"destination": "/enterprise/sponsors",
"permanent": false
},
{
"source": "/support/:path*",
"destination": "/enterprise/:path*",
"permanent": false
},
{
"source": "/docs/guide/going-further/custom-routing",
"destination": "/docs/guide/recipes/custom-routing",
"permanent": false
}
]
}