Work in progress

This commit is contained in:
gpt-engineer-app[bot] 2026-05-22 22:20:25 +00:00
parent 435d68f4a0
commit 49b310205f

View file

@ -670,3 +670,12 @@ const rootRouteChildren: RootRouteChildren = {
export const routeTree = rootRouteImport
._addFileChildren(rootRouteChildren)
._addFileTypes<FileRouteTypes>()
import type { getRouter } from './router.tsx'
import type { createStart } from '@tanstack/react-start'
declare module '@tanstack/react-start' {
interface Register {
ssr: true
router: Awaited<ReturnType<typeof getRouter>>
}
}