/ app / routeTree.gen.ts
routeTree.gen.ts
 1  /* prettier-ignore-start */
 2  
 3  /* eslint-disable */
 4  
 5  // @ts-nocheck
 6  
 7  // noinspection JSUnusedGlobalSymbols
 8  
 9  // This file is auto-generated by TanStack Router
10  
11  // Import Routes
12  
13  import { Route as rootRoute } from './routes/__root'
14  import { Route as IndexImport } from './routes/index'
15  
16  // Create/Update Routes
17  
18  const IndexRoute = IndexImport.update({
19    path: '/',
20    getParentRoute: () => rootRoute,
21  } as any)
22  
23  // Populate the FileRoutesByPath interface
24  
25  declare module '@tanstack/react-router' {
26    interface FileRoutesByPath {
27      '/': {
28        id: '/'
29        path: '/'
30        fullPath: '/'
31        preLoaderRoute: typeof IndexImport
32        parentRoute: typeof rootRoute
33      }
34    }
35  }
36  
37  // Create and export the route tree
38  
39  export const routeTree = rootRoute.addChildren({ IndexRoute })
40  
41  /* prettier-ignore-end */
42  
43  /* ROUTE_MANIFEST_START
44  {
45    "routes": {
46      "__root__": {
47        "filePath": "__root.tsx",
48        "children": [
49          "/"
50        ]
51      },
52      "/": {
53        "filePath": "index.tsx"
54      }
55    }
56  }
57  ROUTE_MANIFEST_END */