Proporcionou URL do Supabase

X-Lovable-Edit-ID: edt-56d346c0-56e3-4d71-af77-6b0d09b7bd0b
Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot] 2026-04-22 16:40:52 +00:00
commit ed6d7fa819
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>>
}
}