feat: add redirect

This commit is contained in:
shadcn
2024-10-18 15:29:28 +04:00
parent 123887c36c
commit 539212c49e
2 changed files with 6 additions and 1 deletions

View File

@@ -26,7 +26,7 @@ configurations. Then I extracted the core components into `sidebar.tsx`.
We now have a solid foundation to build on top of. Composable. Themeable.
Customizable.
Let's get started.
[Browse the Blocks Library](/blocks).
## Beta Testers

View File

@@ -53,6 +53,11 @@ const nextConfig = {
destination: "/docs/components/form",
permanent: false,
},
{
source: "/sidebar",
destination: "/docs/components/sidebar",
permanent: true,
},
]
},
}