We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 623c75d commit 2cda349Copy full SHA for 2cda349
docusaurus.config.ts
@@ -93,7 +93,7 @@ const config: Config = {
93
const redirects: string[] = [];
94
95
// Builder section: redirect old root-level paths to new /builder/ paths
96
- if (existingPath === "/builder/") {
+ if (existingPath === "/builder" || existingPath === "/builder/") {
97
redirects.push("/intro");
98
}
99
if (existingPath.startsWith("/builder/quick-start")) {
src/pages/index.tsx
@@ -1,5 +1,5 @@
1
import { Redirect } from "@docusaurus/router";
2
3
export default function Home() {
4
- return <Redirect to="/intro" />;
+ return <Redirect to="/builder" />;
5
0 commit comments