Lovable update

List the failing SEO findings and fix them.

X-Lovable-Edit-ID: edt-f2cebbfc-46fd-4f1b-a806-ff64b9d9017f
Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot] 2026-05-19 10:21:34 +00:00
commit 4c5e672ba2

View file

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