Skip to content

Commit

Permalink
fix: Updates to redirect (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
samricotta authored Sep 28, 2023
1 parent d7f2be0 commit 3c9bcbc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -444,14 +444,14 @@ const config = {
existingPath.replace("/build/building-modules", "/building-modules"),
]
}
if (existingPath.includes('/build/libraries')) {
if (existingPath.includes('/build/tooling')) {
return [
existingPath.replace("/build/libraries", "/tooling"),
existingPath.replace("/build/tooling", "/tooling"),
]
}
if (existingPath.includes('/build/libraries')) {
if (existingPath.includes('/build/migrations')) {
return [
existingPath.replace("/build/libraries", "/migrations"),
existingPath.replace("/build/migrations", "/migrations"),
]
}
if (existingPath.includes('/build/modules')) {
Expand All @@ -466,7 +466,7 @@ const config = {
}
if (existingPath.includes('/build/spec')) {
return [
existingPath.replace("/build/spec", "/build/spec"),
existingPath.replace("/build/spec", "/spec"),
]
}
if (existingPath.includes('/build/tooling')) {
Expand Down

0 comments on commit 3c9bcbc

Please sign in to comment.