fix(nx-dev): add missing redirects
This commit is contained in:
parent
7280cb0f72
commit
34cde20426
@ -190,6 +190,22 @@ module.exports = withNx({
|
|||||||
permanent: true,
|
permanent: true,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
// Plugins Documents
|
||||||
|
for (let s of Object.keys(redirectRules.pluginUrls)) {
|
||||||
|
rules.push({
|
||||||
|
source: s,
|
||||||
|
destination: redirectRules.pluginUrls[s],
|
||||||
|
permanent: true,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
// References
|
||||||
|
for (let s of Object.keys(redirectRules.referenceUrls)) {
|
||||||
|
rules.push({
|
||||||
|
source: s,
|
||||||
|
destination: redirectRules.referenceUrls[s],
|
||||||
|
permanent: true,
|
||||||
|
});
|
||||||
|
}
|
||||||
// Nesting 5min tutorials in Getting Started
|
// Nesting 5min tutorials in Getting Started
|
||||||
for (let s of Object.keys(redirectRules.nested5minuteTutorialUrls)) {
|
for (let s of Object.keys(redirectRules.nested5minuteTutorialUrls)) {
|
||||||
rules.push({
|
rules.push({
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user