// This file is auto-generated by Tuono import { createRoute } from 'tuono' import RootImport from './routes/__root' import AboutImport from './routes/about' import IndexImport from './routes/index' const rootRoute = createRoute({ isRoot: true, component: RootImport }) const About = createRoute({ component: AboutImport }) const Index = createRoute({ component: IndexImport }) // Create/Update Routes const AboutRoute = About.update({ path: '/about', getParentRoute: () => rootRoute, } as any) const IndexRoute = Index.update({ path: '/', getParentRoute: () => rootRoute, hasHandler: true, } as any) // Create and export the route tree export const routeTree = rootRoute.addChildren([IndexRoute, AboutRoute])