99// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
1010
1111import { Route as rootRouteImport } from './routes/__root'
12- import { Route as SsrFalsePendingMinRouteImport } from './routes/ssr-false-pending-min'
13- import { Route as PostsRouteImport } from './routes/posts'
14- import { Route as DataOnlyPendingComponentRouteImport } from './routes/data-only-pending-component'
1512import { Route as IndexRouteImport } from './routes/index'
13+ import { Route as DataOnlyPendingComponentRouteImport } from './routes/data-only-pending-component'
14+ import { Route as PostsRouteImport } from './routes/posts'
15+ import { Route as SsrFalsePendingMinRouteImport } from './routes/ssr-false-pending-min'
1616import { Route as PostsPostIdRouteImport } from './routes/posts.$postId'
1717
18- const SsrFalsePendingMinRoute = SsrFalsePendingMinRouteImport . update ( {
19- id : '/ssr-false-pending-min' ,
20- path : '/ssr-false-pending-min' ,
21- getParentRoute : ( ) => rootRouteImport ,
22- } as any )
23- const PostsRoute = PostsRouteImport . update ( {
24- id : '/posts' ,
25- path : '/posts' ,
18+ const IndexRoute = IndexRouteImport . update ( {
19+ id : '/' ,
20+ path : '/' ,
2621 getParentRoute : ( ) => rootRouteImport ,
2722} as any )
2823const DataOnlyPendingComponentRoute =
@@ -31,9 +26,14 @@ const DataOnlyPendingComponentRoute =
3126 path : '/data-only-pending-component' ,
3227 getParentRoute : ( ) => rootRouteImport ,
3328 } as any )
34- const IndexRoute = IndexRouteImport . update ( {
35- id : '/' ,
36- path : '/' ,
29+ const PostsRoute = PostsRouteImport . update ( {
30+ id : '/posts' ,
31+ path : '/posts' ,
32+ getParentRoute : ( ) => rootRouteImport ,
33+ } as any )
34+ const SsrFalsePendingMinRoute = SsrFalsePendingMinRouteImport . update ( {
35+ id : '/ssr-false-pending-min' ,
36+ path : '/ssr-false-pending-min' ,
3737 getParentRoute : ( ) => rootRouteImport ,
3838} as any )
3939const PostsPostIdRoute = PostsPostIdRouteImport . update ( {
@@ -97,18 +97,11 @@ export interface RootRouteChildren {
9797
9898declare module '@tanstack/solid-router' {
9999 interface FileRoutesByPath {
100- '/ssr-false-pending-min' : {
101- id : '/ssr-false-pending-min'
102- path : '/ssr-false-pending-min'
103- fullPath : '/ssr-false-pending-min'
104- preLoaderRoute : typeof SsrFalsePendingMinRouteImport
105- parentRoute : typeof rootRouteImport
106- }
107- '/posts' : {
108- id : '/posts'
109- path : '/posts'
110- fullPath : '/posts'
111- preLoaderRoute : typeof PostsRouteImport
100+ '/' : {
101+ id : '/'
102+ path : '/'
103+ fullPath : '/'
104+ preLoaderRoute : typeof IndexRouteImport
112105 parentRoute : typeof rootRouteImport
113106 }
114107 '/data-only-pending-component' : {
@@ -118,11 +111,18 @@ declare module '@tanstack/solid-router' {
118111 preLoaderRoute : typeof DataOnlyPendingComponentRouteImport
119112 parentRoute : typeof rootRouteImport
120113 }
121- '/' : {
122- id : '/'
123- path : '/'
124- fullPath : '/'
125- preLoaderRoute : typeof IndexRouteImport
114+ '/posts' : {
115+ id : '/posts'
116+ path : '/posts'
117+ fullPath : '/posts'
118+ preLoaderRoute : typeof PostsRouteImport
119+ parentRoute : typeof rootRouteImport
120+ }
121+ '/ssr-false-pending-min' : {
122+ id : '/ssr-false-pending-min'
123+ path : '/ssr-false-pending-min'
124+ fullPath : '/ssr-false-pending-min'
125+ preLoaderRoute : typeof SsrFalsePendingMinRouteImport
126126 parentRoute : typeof rootRouteImport
127127 }
128128 '/posts/$postId' : {
0 commit comments