forked from mdx-js/mdx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vercel.json
178 lines (178 loc) · 4.37 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
{
"public": true,
"trailingSlash": true,
"redirects": [
{
"source": "/about/",
"destination": "/community/about/"
},
{
"source": "/advanced/",
"destination": "/guides/"
},
{
"source": "/advanced/api/",
"destination": "/packages/mdx/#api"
},
{
"source": "/advanced/ast/",
"destination": "/packages/remark-mdx/#syntax-tree"
},
{
"source": "/advanced/components/",
"destination": "/docs/using-mdx/"
},
{
"source": "/advanced/contributing/",
"destination": "/community/contribute/"
},
{
"source": "/advanced/custom-loader/",
"destination": "/guides/frontmatter/"
},
{
"source": "/advanced/retext-plugins/",
"destination": "/docs/extending-mdx/#using-plugins"
},
{
"source": "/advanced/plugins/",
"destination": "/docs/extending-mdx/"
},
{
"source": "/advanced/runtime/",
"destination": "/packages/mdx/#evaluatefile-options"
},
{
"source": "/advanced/specification/",
"destination": "/packages/remark-mdx/#syntax-tree"
},
{
"source": "/advanced/sync-api/",
"destination": "/packages/mdx/#api"
},
{
"source": "/advanced/transform-content/",
"destination": "/packages/remark-mdx/"
},
{
"source": "/advanced/typescript/",
"destination": "/docs/getting-started/#types"
},
{
"source": "/advanced/writing-a-plugin/",
"destination": "/guides/frontmatter/"
},
{
"source": "/contributing/",
"destination": "/community/contribute/"
},
{
"source": "/editor-plugins/",
"destination": "/docs/getting-started/#editor"
},
{
"source": "/editors/",
"destination": "/docs/getting-started/#editor"
},
{
"source": "/getting-started/create-react-app/",
"destination": "/docs/getting-started/#create-react-app-cra"
},
{
"source": "/getting-started/gatsby/",
"destination": "/docs/getting-started/#gatsby"
},
{
"source": "/getting-started/next/",
"destination": "/docs/getting-started/#nextjs"
},
{
"source": "/getting-started/parcel/",
"destination": "/docs/getting-started/#parcel"
},
{
"source": "/getting-started/react-static/",
"destination": "/docs/getting-started/#react-static"
},
{
"source": "/getting-started/table-of-components/",
"destination": "/table-of-components/"
},
{
"source": "/getting-started/typescript/",
"destination": "/docs/getting-started/#types"
},
{
"source": "/getting-started/webpack/",
"destination": "/docs/getting-started/#webpack"
},
{
"source": "/getting-started/",
"destination": "/docs/getting-started/"
},
{
"source": "/guides/custom-loader/",
"destination": "/guides/frontmatter/"
},
{
"source": "/guides/live-code/",
"destination": "/guides/syntax-highlighting/#syntax-highlighting-with-the-meta-field"
},
{
"source": "/guides/markdown-in-components/",
"destination": "/docs/what-is-mdx/"
},
{
"source": "/guides/math-blocks/",
"destination": "/guides/math/"
},
{
"source": "/guides/mdx-embed/",
"destination": "/guides/embed/#embeds-at-run-time"
},
{
"source": "/guides/table-of-contents/",
"destination": "/docs/extending-mdx/"
},
{
"source": "/guides/terminal/",
"destination": "/docs/getting-started/#ink"
},
{
"source": "/guides/vue/",
"destination": "/docs/getting-started/#vue"
},
{
"source": "/guides/wrapper-customization/",
"destination": "/docs/using-mdx/#layout"
},
{
"source": "/guides/writing-a-plugin/",
"destination": "/docs/extending-mdx/#creating-plugins"
},
{
"source": "/mdx/",
"destination": "/docs/what-is-mdx/"
},
{
"source": "/plugins/",
"destination": "/docs/extending-mdx/#using-plugins"
},
{
"source": "/projects/",
"destination": "/community/projects/"
},
{
"source": "/support/",
"destination": "/community/support/"
},
{
"source": "/syntax/",
"destination": "/docs/getting-started/#syntax"
},
{
"source": "/vue/",
"destination": "/docs/getting-started/#vue"
}
]
}