Work in progress

This commit is contained in:
gpt-engineer-app[bot] 2026-04-17 21:22:30 +00:00
parent 488e3c0e8c
commit 6e252c9ce6
2 changed files with 9 additions and 0 deletions

BIN
bun.lockb

Binary file not shown.

View file

@ -391,3 +391,12 @@ const rootRouteChildren: RootRouteChildren = {
export const routeTree = rootRouteImport export const routeTree = rootRouteImport
._addFileChildren(rootRouteChildren) ._addFileChildren(rootRouteChildren)
._addFileTypes<FileRouteTypes>() ._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>>
}
}