Work in progress

This commit is contained in:
gpt-engineer-app[bot]
2026-04-17 22:45:19 +00:00
parent 2e8dfb6b61
commit 655076c985
2 changed files with 9 additions and 0 deletions
BIN
View File
Binary file not shown.
+9
View File
@@ -721,3 +721,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>>
}
}