Identificou divergências do schema

X-Lovable-Edit-ID: edt-4637b47a-584c-4e95-8ad2-8d62fcc6117c
Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot] 2026-04-22 01:30:10 +00:00
commit 8c19de3df1
2 changed files with 9 additions and 0 deletions

BIN
bun.lockb

Binary file not shown.

View file

@ -496,3 +496,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>>
}
}