mirror of
https://github.com/linsa-io/linsa.git
synced 2026-01-12 12:20:23 +01:00
chore: preload nested deps
This commit is contained in:
@@ -2,21 +2,17 @@ import { createRouter as createTanStackRouter } from "@tanstack/react-router"
|
||||
import { routeTree } from "./routeTree.gen"
|
||||
import { DefaultCatchBoundary } from "./components/DefaultCatchBoundary"
|
||||
import { NotFound } from "./components/NotFound"
|
||||
import { QueryClient } from "@tanstack/react-query"
|
||||
import { routerWithQueryClient } from "@tanstack/react-router-with-query"
|
||||
|
||||
export function createRouter() {
|
||||
const queryClient = new QueryClient()
|
||||
const router = routerWithQueryClient(
|
||||
createTanStackRouter({
|
||||
routeTree,
|
||||
defaultPreload: "intent",
|
||||
defaultErrorComponent: DefaultCatchBoundary,
|
||||
defaultNotFoundComponent: () => <NotFound />,
|
||||
context: { queryClient, auth: undefined! },
|
||||
}),
|
||||
queryClient,
|
||||
)
|
||||
const router = createTanStackRouter({
|
||||
routeTree,
|
||||
defaultPreload: "intent",
|
||||
defaultErrorComponent: DefaultCatchBoundary,
|
||||
defaultNotFoundComponent: () => <NotFound />,
|
||||
context: {
|
||||
auth: undefined,
|
||||
},
|
||||
})
|
||||
|
||||
return router
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user