forked from cypress-io/cypress-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
redirects.js
42 lines (42 loc) · 912 Bytes
/
redirects.js
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
export const redirects = [
{
path: '/',
redirect: '/guides/overview/why-cypress',
},
{
path: '/guides',
redirect: '/guides/overview/why-cypress',
},
{
path: '/api',
redirect: '/api/table-of-contents',
},
{
path: '/examples',
redirect: '/examples/examples/recipes',
},
{
path: '/faq',
redirect: '/faq/questions/using-cypress-faq',
},
{
path: '/plugins',
redirect: '/plugins/directory',
},
{
path: '/guides/component-testing',
redirect: '/guides/component-testing/overview',
},
{
path: '/guides/component-testing/writing-your-first-component-test',
redirect: '/guides/component-testing/overview',
},
{
path: '/guides/dashboard/dashboard-introduction',
redirect: '/guides/cloud/introduction',
},
{
path: '/guides/references/bundled-tools',
redirect: '/guides/references/bundled-libraries',
},
]