diff --git a/src/App.tsx b/src/App.tsx index 3bfd1ed..bef2c54 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -9,19 +9,8 @@ import { import DocsLayout from "./DocsLayout"; import DynamicLayout from "./DynamicLayout"; import ErrorBoundary from "./ErrorHandler"; -import Home from "./Home"; import MainLayout from "./MainLayout"; -import DocsConfiguration, { - tableOfContents as docsConfigurationToc, -} from "./docs/configuration.mdx"; -import DocsInstallation, { - tableOfContents as docsInstallationToc, -} from "./docs/installation.mdx"; -import DocsIntroduction, { - tableOfContents as docsIntroductionToc, -} from "./docs/introduction.mdx"; - import { Tooltip, TooltipContent } from "@pswui/Tooltip"; import React, { type ForwardedRef, @@ -225,12 +214,20 @@ const router = createBrowserRouter( > - REDIRECTED_404.test(window.location.search) - ? redirect(REDIRECTED_404.exec(window.location.search)?.[1] ?? "/") - : true - } - element={} + lazy={async () => { + const { default: Component } = await import("./Home"); + + return { + Component, + loader() { + return REDIRECTED_404.test(window.location.search) + ? redirect( + REDIRECTED_404.exec(window.location.search)?.[1] ?? "/", + ) + : true; + }, + }; + }} /> - - - } + lazy={async () => { + const { default: DocsIntroduction, tableOfContents } = await import( + "./docs/introduction.mdx" + ); + + return { + Component: () => ( + + + + ), + }; + }} /> - - - } + lazy={async () => { + const { default: DocsInstallation, tableOfContents } = await import( + "./docs/installation.mdx" + ); + + return { + Component: () => ( + + + + ), + }; + }} /> - - - } + lazy={async () => { + const { default: DocsConfiguration, tableOfContents } = + await import("./docs/configuration.mdx"); + + return { + Component: () => ( + + + + ), + }; + }} />