Work in progress

This commit is contained in:
gpt-engineer-app[bot]
2026-05-11 20:41:23 +00:00
parent d516eeab88
commit 75fc797807
+9
View File
@@ -1335,3 +1335,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>>
}
}