feat: setup web/ for tanstack router frontend

This commit is contained in:
2025-09-13 11:30:11 -05:00
parent ac2638dd9a
commit 6f831f5fa6
23 changed files with 5227 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
import { Outlet, createRootRoute } from '@tanstack/react-router'
import { TanStackRouterDevtoolsPanel } from '@tanstack/react-router-devtools'
import { TanstackDevtools } from '@tanstack/react-devtools'
export const Route = createRootRoute({
component: () => (
<>
<Outlet />
<TanstackDevtools
config={{
position: 'bottom-left',
}}
plugins={[
{
name: 'Tanstack Router',
render: <TanStackRouterDevtoolsPanel />,
},
]}
/>
</>
),
})