This commit is contained in:
Nikita
2025-12-21 13:37:19 -08:00
commit 8cd4b943a5
173 changed files with 44266 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import { createRouter } from "@tanstack/react-router"
import { routeTree } from "./routeTree.gen"
import "./styles.css"
export const getRouter = () =>
createRouter({
routeTree,
defaultPreload: "viewport",
scrollRestoration: true,
})
declare module "@tanstack/react-router" {
interface Register {
router: ReturnType<typeof getRouter>
}
}