@@ -12,6 +12,8 @@ import { Route as rootRouteImport } from './routes/__root'
1212import { Route as SassMixinRouteImport } from './routes/sass-mixin'
1313import { Route as QuotesRouteImport } from './routes/quotes'
1414import { Route as ModulesRouteImport } from './routes/modules'
15+ import { Route as LazyCssStaticRouteImport } from './routes/lazy-css-static'
16+ import { Route as LazyCssLazyRouteImport } from './routes/lazy-css-lazy'
1517import { Route as IndexRouteImport } from './routes/index'
1618
1719const SassMixinRoute = SassMixinRouteImport . update ( {
@@ -29,6 +31,16 @@ const ModulesRoute = ModulesRouteImport.update({
2931 path : '/modules' ,
3032 getParentRoute : ( ) => rootRouteImport ,
3133} as any )
34+ const LazyCssStaticRoute = LazyCssStaticRouteImport . update ( {
35+ id : '/lazy-css-static' ,
36+ path : '/lazy-css-static' ,
37+ getParentRoute : ( ) => rootRouteImport ,
38+ } as any )
39+ const LazyCssLazyRoute = LazyCssLazyRouteImport . update ( {
40+ id : '/lazy-css-lazy' ,
41+ path : '/lazy-css-lazy' ,
42+ getParentRoute : ( ) => rootRouteImport ,
43+ } as any )
3244const IndexRoute = IndexRouteImport . update ( {
3345 id : '/' ,
3446 path : '/' ,
@@ -37,33 +49,60 @@ const IndexRoute = IndexRouteImport.update({
3749
3850export interface FileRoutesByFullPath {
3951 '/' : typeof IndexRoute
52+ '/lazy-css-lazy' : typeof LazyCssLazyRoute
53+ '/lazy-css-static' : typeof LazyCssStaticRoute
4054 '/modules' : typeof ModulesRoute
4155 '/quotes' : typeof QuotesRoute
4256 '/sass-mixin' : typeof SassMixinRoute
4357}
4458export interface FileRoutesByTo {
4559 '/' : typeof IndexRoute
60+ '/lazy-css-lazy' : typeof LazyCssLazyRoute
61+ '/lazy-css-static' : typeof LazyCssStaticRoute
4662 '/modules' : typeof ModulesRoute
4763 '/quotes' : typeof QuotesRoute
4864 '/sass-mixin' : typeof SassMixinRoute
4965}
5066export interface FileRoutesById {
5167 __root__ : typeof rootRouteImport
5268 '/' : typeof IndexRoute
69+ '/lazy-css-lazy' : typeof LazyCssLazyRoute
70+ '/lazy-css-static' : typeof LazyCssStaticRoute
5371 '/modules' : typeof ModulesRoute
5472 '/quotes' : typeof QuotesRoute
5573 '/sass-mixin' : typeof SassMixinRoute
5674}
5775export interface FileRouteTypes {
5876 fileRoutesByFullPath : FileRoutesByFullPath
59- fullPaths : '/' | '/modules' | '/quotes' | '/sass-mixin'
77+ fullPaths :
78+ | '/'
79+ | '/lazy-css-lazy'
80+ | '/lazy-css-static'
81+ | '/modules'
82+ | '/quotes'
83+ | '/sass-mixin'
6084 fileRoutesByTo : FileRoutesByTo
61- to : '/' | '/modules' | '/quotes' | '/sass-mixin'
62- id : '__root__' | '/' | '/modules' | '/quotes' | '/sass-mixin'
85+ to :
86+ | '/'
87+ | '/lazy-css-lazy'
88+ | '/lazy-css-static'
89+ | '/modules'
90+ | '/quotes'
91+ | '/sass-mixin'
92+ id :
93+ | '__root__'
94+ | '/'
95+ | '/lazy-css-lazy'
96+ | '/lazy-css-static'
97+ | '/modules'
98+ | '/quotes'
99+ | '/sass-mixin'
63100 fileRoutesById : FileRoutesById
64101}
65102export interface RootRouteChildren {
66103 IndexRoute : typeof IndexRoute
104+ LazyCssLazyRoute : typeof LazyCssLazyRoute
105+ LazyCssStaticRoute : typeof LazyCssStaticRoute
67106 ModulesRoute : typeof ModulesRoute
68107 QuotesRoute : typeof QuotesRoute
69108 SassMixinRoute : typeof SassMixinRoute
@@ -92,6 +131,20 @@ declare module '@tanstack/react-router' {
92131 preLoaderRoute : typeof ModulesRouteImport
93132 parentRoute : typeof rootRouteImport
94133 }
134+ '/lazy-css-static' : {
135+ id : '/lazy-css-static'
136+ path : '/lazy-css-static'
137+ fullPath : '/lazy-css-static'
138+ preLoaderRoute : typeof LazyCssStaticRouteImport
139+ parentRoute : typeof rootRouteImport
140+ }
141+ '/lazy-css-lazy' : {
142+ id : '/lazy-css-lazy'
143+ path : '/lazy-css-lazy'
144+ fullPath : '/lazy-css-lazy'
145+ preLoaderRoute : typeof LazyCssLazyRouteImport
146+ parentRoute : typeof rootRouteImport
147+ }
95148 '/' : {
96149 id : '/'
97150 path : '/'
@@ -104,6 +157,8 @@ declare module '@tanstack/react-router' {
104157
105158const rootRouteChildren : RootRouteChildren = {
106159 IndexRoute : IndexRoute ,
160+ LazyCssLazyRoute : LazyCssLazyRoute ,
161+ LazyCssStaticRoute : LazyCssStaticRoute ,
107162 ModulesRoute : ModulesRoute ,
108163 QuotesRoute : QuotesRoute ,
109164 SassMixinRoute : SassMixinRoute ,
0 commit comments