/* prettier-ignore-start */ /* eslint-disable */ // @ts-nocheck // noinspection JSUnusedGlobalSymbols // This file is auto-generated by TanStack Router import { createFileRoute } from '@tanstack/react-router' // Import Routes import { Route as rootRoute } from './routes/__root' import { Route as DashboardImport } from './routes/_dashboard' import { Route as AuthAuthImport } from './routes/auth/_auth' // Create Virtual Routes const AuthImport = createFileRoute('/auth')() const DashboardIndexLazyImport = createFileRoute('/_dashboard/')() const AuthAuthLogoutLazyImport = createFileRoute('/auth/_auth/logout')() const AuthAuthLoginLazyImport = createFileRoute('/auth/_auth/login')() // Create/Update Routes const AuthRoute = AuthImport.update({ path: '/auth', getParentRoute: () => rootRoute, } as any) const DashboardRoute = DashboardImport.update({ id: '/_dashboard', getParentRoute: () => rootRoute, } as any) const DashboardIndexLazyRoute = DashboardIndexLazyImport.update({ path: '/', getParentRoute: () => DashboardRoute, } as any).lazy(() => import('./routes/_dashboard/index.lazy').then((d) => d.Route), ) const AuthAuthRoute = AuthAuthImport.update({ id: '/_auth', getParentRoute: () => AuthRoute, } as any) const AuthAuthLogoutLazyRoute = AuthAuthLogoutLazyImport.update({ path: '/logout', getParentRoute: () => AuthAuthRoute, } as any).lazy(() => import('./routes/auth/_auth.logout.lazy').then((d) => d.Route), ) const AuthAuthLoginLazyRoute = AuthAuthLoginLazyImport.update({ path: '/login', getParentRoute: () => AuthAuthRoute, } as any).lazy(() => import('./routes/auth/_auth.login.lazy').then((d) => d.Route), ) // Populate the FileRoutesByPath interface declare module '@tanstack/react-router' { interface FileRoutesByPath { '/_dashboard': { id: '/_dashboard' path: '' fullPath: '' preLoaderRoute: typeof DashboardImport parentRoute: typeof rootRoute } '/auth': { id: '/auth' path: '/auth' fullPath: '/auth' preLoaderRoute: typeof AuthImport parentRoute: typeof rootRoute } '/auth/_auth': { id: '/auth/_auth' path: '/auth' fullPath: '/auth' preLoaderRoute: typeof AuthAuthImport parentRoute: typeof AuthRoute } '/_dashboard/': { id: '/_dashboard/' path: '/' fullPath: '/' preLoaderRoute: typeof DashboardIndexLazyImport parentRoute: typeof DashboardImport } '/auth/_auth/login': { id: '/auth/_auth/login' path: '/login' fullPath: '/auth/login' preLoaderRoute: typeof AuthAuthLoginLazyImport parentRoute: typeof AuthAuthImport } '/auth/_auth/logout': { id: '/auth/_auth/logout' path: '/logout' fullPath: '/auth/logout' preLoaderRoute: typeof AuthAuthLogoutLazyImport parentRoute: typeof AuthAuthImport } } } // Create and export the route tree export const routeTree = rootRoute.addChildren({ DashboardRoute: DashboardRoute.addChildren({ DashboardIndexLazyRoute }), AuthRoute: AuthRoute.addChildren({ AuthAuthRoute: AuthAuthRoute.addChildren({ AuthAuthLoginLazyRoute, AuthAuthLogoutLazyRoute, }), }), }) /* prettier-ignore-end */ /* ROUTE_MANIFEST_START { "routes": { "__root__": { "filePath": "__root.tsx", "children": [ "/_dashboard", "/auth" ] }, "/_dashboard": { "filePath": "_dashboard.tsx", "children": [ "/_dashboard/" ] }, "/auth": { "filePath": "auth", "children": [ "/auth/_auth" ] }, "/auth/_auth": { "filePath": "auth/_auth.tsx", "parent": "/auth", "children": [ "/auth/_auth/login", "/auth/_auth/logout" ] }, "/_dashboard/": { "filePath": "_dashboard/index.lazy.tsx", "parent": "/_dashboard" }, "/auth/_auth/login": { "filePath": "auth/_auth.login.lazy.tsx", "parent": "/auth/_auth" }, "/auth/_auth/logout": { "filePath": "auth/_auth.logout.lazy.tsx", "parent": "/auth/_auth" } } } ROUTE_MANIFEST_END */