Work in progress

This commit is contained in:
gpt-engineer-app[bot]
2026-05-14 02:55:43 +00:00
parent d315e2ce0d
commit 06a05159a9
+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>>
}
}