diff --git a/packages/react/src/App.tsx b/packages/react/src/App.tsx index c6d6c20..1648b44 100644 --- a/packages/react/src/App.tsx +++ b/packages/react/src/App.tsx @@ -106,15 +106,15 @@ const overrideComponents = { const docsModules = import.meta.glob("./docs/components/*.mdx"); const routes = Object.keys(docsModules).map((path) => { - const sfPath = path.replace("./docs", "").replace(".mdx", ""); + const sfPath = path.split("/").pop()?.replace(".mdx", ""); return ( { const { default: C, tableOfContents } = await import( - `./docs${sfPath}.mdx` + `./docs/components/${sfPath}.mdx` ); return { Component: () => ( @@ -150,11 +150,20 @@ const router = createBrowserRouter( } /> - redirect("/docs/components/button")} - /> - {routes} + + + redirect( + `/docs/components/${Object.keys(docsModules)[0] + .split("/") + .pop() + ?.replace(".mdx", "")}` + ) + } + /> + {routes} + )