@@ -34,6 +34,7 @@ import { Route as SearchParamsDefaultRouteImport } from './routes/search-params/
3434import { Route as RedirectTargetRouteImport } from './routes/redirect/$target'
3535import { Route as PostsPostIdRouteImport } from './routes/posts.$postId'
3636import { Route as NotFoundViaLoaderRouteImport } from './routes/not-found/via-loader'
37+ import { Route as NotFoundViaHeadRouteImport } from './routes/not-found/via-head'
3738import { Route as NotFoundViaBeforeLoadRouteImport } from './routes/not-found/via-beforeLoad'
3839import { Route as ApiUsersRouteImport } from './routes/api.users'
3940import { Route as LayoutLayout2RouteImport } from './routes/_layout/_layout-2'
@@ -169,6 +170,11 @@ const NotFoundViaLoaderRoute = NotFoundViaLoaderRouteImport.update({
169170 path : '/via-loader' ,
170171 getParentRoute : ( ) => NotFoundRouteRoute ,
171172} as any )
173+ const NotFoundViaHeadRoute = NotFoundViaHeadRouteImport . update ( {
174+ id : '/via-head' ,
175+ path : '/via-head' ,
176+ getParentRoute : ( ) => NotFoundRouteRoute ,
177+ } as any )
172178const NotFoundViaBeforeLoadRoute = NotFoundViaBeforeLoadRouteImport . update ( {
173179 id : '/via-beforeLoad' ,
174180 path : '/via-beforeLoad' ,
@@ -272,6 +278,7 @@ export interface FileRoutesByFullPath {
272278 '/대한민국' : typeof Char45824Char54620Char48124Char44397Route
273279 '/api/users' : typeof ApiUsersRouteWithChildren
274280 '/not-found/via-beforeLoad' : typeof NotFoundViaBeforeLoadRoute
281+ '/not-found/via-head' : typeof NotFoundViaHeadRoute
275282 '/not-found/via-loader' : typeof NotFoundViaLoaderRoute
276283 '/posts/$postId' : typeof PostsPostIdRoute
277284 '/redirect/$target' : typeof RedirectTargetRouteWithChildren
@@ -307,6 +314,7 @@ export interface FileRoutesByTo {
307314 '/대한민국' : typeof Char45824Char54620Char48124Char44397Route
308315 '/api/users' : typeof ApiUsersRouteWithChildren
309316 '/not-found/via-beforeLoad' : typeof NotFoundViaBeforeLoadRoute
317+ '/not-found/via-head' : typeof NotFoundViaHeadRoute
310318 '/not-found/via-loader' : typeof NotFoundViaLoaderRoute
311319 '/posts/$postId' : typeof PostsPostIdRoute
312320 '/search-params/default' : typeof SearchParamsDefaultRoute
@@ -347,6 +355,7 @@ export interface FileRoutesById {
347355 '/_layout/_layout-2' : typeof LayoutLayout2RouteWithChildren
348356 '/api/users' : typeof ApiUsersRouteWithChildren
349357 '/not-found/via-beforeLoad' : typeof NotFoundViaBeforeLoadRoute
358+ '/not-found/via-head' : typeof NotFoundViaHeadRoute
350359 '/not-found/via-loader' : typeof NotFoundViaLoaderRoute
351360 '/posts/$postId' : typeof PostsPostIdRoute
352361 '/redirect/$target' : typeof RedirectTargetRouteWithChildren
@@ -389,6 +398,7 @@ export interface FileRouteTypes {
389398 | '/대한민국'
390399 | '/api/users'
391400 | '/not-found/via-beforeLoad'
401+ | '/not-found/via-head'
392402 | '/not-found/via-loader'
393403 | '/posts/$postId'
394404 | '/redirect/$target'
@@ -424,6 +434,7 @@ export interface FileRouteTypes {
424434 | '/대한민국'
425435 | '/api/users'
426436 | '/not-found/via-beforeLoad'
437+ | '/not-found/via-head'
427438 | '/not-found/via-loader'
428439 | '/posts/$postId'
429440 | '/search-params/default'
@@ -463,6 +474,7 @@ export interface FileRouteTypes {
463474 | '/_layout/_layout-2'
464475 | '/api/users'
465476 | '/not-found/via-beforeLoad'
477+ | '/not-found/via-head'
466478 | '/not-found/via-loader'
467479 | '/posts/$postId'
468480 | '/redirect/$target'
@@ -673,6 +685,13 @@ declare module '@tanstack/react-router' {
673685 preLoaderRoute : typeof NotFoundViaLoaderRouteImport
674686 parentRoute : typeof NotFoundRouteRoute
675687 }
688+ '/not-found/via-head' : {
689+ id : '/not-found/via-head'
690+ path : '/via-head'
691+ fullPath : '/not-found/via-head'
692+ preLoaderRoute : typeof NotFoundViaHeadRouteImport
693+ parentRoute : typeof NotFoundRouteRoute
694+ }
676695 '/not-found/via-beforeLoad' : {
677696 id : '/not-found/via-beforeLoad'
678697 path : '/via-beforeLoad'
@@ -797,12 +816,14 @@ declare module '@tanstack/react-router' {
797816
798817interface NotFoundRouteRouteChildren {
799818 NotFoundViaBeforeLoadRoute : typeof NotFoundViaBeforeLoadRoute
819+ NotFoundViaHeadRoute : typeof NotFoundViaHeadRoute
800820 NotFoundViaLoaderRoute : typeof NotFoundViaLoaderRoute
801821 NotFoundIndexRoute : typeof NotFoundIndexRoute
802822}
803823
804824const NotFoundRouteRouteChildren : NotFoundRouteRouteChildren = {
805825 NotFoundViaBeforeLoadRoute : NotFoundViaBeforeLoadRoute ,
826+ NotFoundViaHeadRoute : NotFoundViaHeadRoute ,
806827 NotFoundViaLoaderRoute : NotFoundViaLoaderRoute ,
807828 NotFoundIndexRoute : NotFoundIndexRoute ,
808829}
0 commit comments