-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathredirects.js
More file actions
94 lines (93 loc) · 2.55 KB
/
Copy pathredirects.js
File metadata and controls
94 lines (93 loc) · 2.55 KB
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
// Client-side redirects for pages that moved. Consumed by the
// client-redirects plugin in docusaurus.config.js, by the markdown-export
// plugin (which turns each source into a "moved to" .md stub), and by
// util/verify_markdown_export.js.
module.exports = [{
// Moved in version 1.1.1
from: ['/concepts/authentication'],
to: '/concepts/authentication/setup',
},
{
// Moved in version 1.1.1, 2.1.0 and 2.9.0
from: ['/tutorials', '/tutorials/videos', '/tutorials/first-app'],
to: '/tutorials/tutorials/fundamentals',
},
{
// Moved in version 1.2.0
from: ['/concepts/database-communication'],
to: '/concepts/database/connection',
},
{
// Moved in version 2.1.0
from: ['/insights'],
to: '/tools/insights',
},
{
// Moved in version 2.1.0
from: ['/roadmap'],
to: '/contribute',
},
{
// Moved in version 2.7.0
from: ['/get-started'],
to: '/get-started/creating-endpoints',
},
{
// Moved when scheduling was reorganized from a single page to a directory
from: ['/concepts/scheduling'],
to: '/concepts/scheduling/setup',
},
{
// Removed in version 4.0 together with the string-based future call API
from: ['/concepts/scheduling/legacy'],
to: '/concepts/scheduling/setup',
},
{
from: ['/cloud/reference/deployment/deploying-your-application'],
to: '/cloud/concepts/deployments',
},
{
from: ['/cloud/guides/logs', '/cloud/reference/logging'],
to: '/cloud/concepts/logs',
},
{
from: ['/cloud/guides/passwords'],
to: '/cloud/concepts/passwords-secrets-env-vars',
},
{
from: ['/cloud/guides/custom-domains'],
to: '/cloud/concepts/custom-domains',
},
{
from: ['/cloud/guides/database'],
to: '/cloud/concepts/database',
},
{
from: ['/cloud/reference/personal-access-tokens'],
to: '/cloud/concepts/personal-access-tokens',
},
{
from: ['/cloud/reference/deployment/assets'],
to: '/cloud/guides/ship-non-dart-files',
},
{
from: ['/cloud/reference/deployment/deployment-hooks'],
to: '/cloud/concepts/deployment-hooks',
},
{
from: ['/cloud/reference/deployment/github-automation'],
to: '/cloud/guides/deploy-from-ci-with-github-actions',
},
{
from: ['/cloud/reference/deployment/handling-private-dependencies'],
to: '/cloud/reference/private-dependencies',
},
{
from: ['/cloud/reference/deployment/dart-sdk-versions'],
to: '/cloud/reference/dart-sdk-versions',
},
{
from: ['/cloud/reference/project-id'],
to: '/cloud/reference/project-id-rules',
},
];