Plano Fase 4 criado

X-Lovable-Edit-ID: edt-f8a15c29-0b3d-4b14-8d8d-692d982667f5
Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot] 2026-04-18 01:35:17 +00:00
commit df82201a2d
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>>
}
}