@@ -14,9 +14,7 @@ import { Route as TermsRouteImport } from './routes/terms'
1414import { Route as TenetsRouteImport } from './routes/tenets'
1515import { Route as SupportRouteImport } from './routes/support'
1616import { Route as SponsorsEmbedRouteImport } from './routes/sponsors-embed'
17- import { Route as SitemapDotxmlRouteImport } from './routes/sitemap[.]xml'
1817import { Route as RssDotxmlRouteImport } from './routes/rss[.]xml'
19- import { Route as RobotsDottxtRouteImport } from './routes/robots[.]txt'
2018import { Route as PrivacyRouteImport } from './routes/privacy'
2119import { Route as PartnersEmbedRouteImport } from './routes/partners-embed'
2220import { Route as PartnersRouteImport } from './routes/partners'
@@ -146,21 +144,11 @@ const SponsorsEmbedRoute = SponsorsEmbedRouteImport.update({
146144 path : '/sponsors-embed' ,
147145 getParentRoute : ( ) => rootRouteImport ,
148146} as any )
149- const SitemapDotxmlRoute = SitemapDotxmlRouteImport . update ( {
150- id : '/sitemap.xml' ,
151- path : '/sitemap.xml' ,
152- getParentRoute : ( ) => rootRouteImport ,
153- } as any )
154147const RssDotxmlRoute = RssDotxmlRouteImport . update ( {
155148 id : '/rss.xml' ,
156149 path : '/rss.xml' ,
157150 getParentRoute : ( ) => rootRouteImport ,
158151} as any )
159- const RobotsDottxtRoute = RobotsDottxtRouteImport . update ( {
160- id : '/robots.txt' ,
161- path : '/robots.txt' ,
162- getParentRoute : ( ) => rootRouteImport ,
163- } as any )
164152const PrivacyRoute = PrivacyRouteImport . update ( {
165153 id : '/privacy' ,
166154 path : '/privacy' ,
@@ -722,9 +710,7 @@ export interface FileRoutesByFullPath {
722710 '/partners' : typeof PartnersRoute
723711 '/partners-embed' : typeof PartnersEmbedRoute
724712 '/privacy' : typeof PrivacyRoute
725- '/robots.txt' : typeof RobotsDottxtRoute
726713 '/rss.xml' : typeof RssDotxmlRoute
727- '/sitemap.xml' : typeof SitemapDotxmlRoute
728714 '/sponsors-embed' : typeof SponsorsEmbedRoute
729715 '/support' : typeof SupportRoute
730716 '/tenets' : typeof TenetsRoute
@@ -830,9 +816,7 @@ export interface FileRoutesByTo {
830816 '/partners' : typeof PartnersRoute
831817 '/partners-embed' : typeof PartnersEmbedRoute
832818 '/privacy' : typeof PrivacyRoute
833- '/robots.txt' : typeof RobotsDottxtRoute
834819 '/rss.xml' : typeof RssDotxmlRoute
835- '/sitemap.xml' : typeof SitemapDotxmlRoute
836820 '/sponsors-embed' : typeof SponsorsEmbedRoute
837821 '/support' : typeof SupportRoute
838822 '/tenets' : typeof TenetsRoute
@@ -941,9 +925,7 @@ export interface FileRoutesById {
941925 '/partners' : typeof PartnersRoute
942926 '/partners-embed' : typeof PartnersEmbedRoute
943927 '/privacy' : typeof PrivacyRoute
944- '/robots.txt' : typeof RobotsDottxtRoute
945928 '/rss.xml' : typeof RssDotxmlRoute
946- '/sitemap.xml' : typeof SitemapDotxmlRoute
947929 '/sponsors-embed' : typeof SponsorsEmbedRoute
948930 '/support' : typeof SupportRoute
949931 '/tenets' : typeof TenetsRoute
@@ -1056,9 +1038,7 @@ export interface FileRouteTypes {
10561038 | '/partners'
10571039 | '/partners-embed'
10581040 | '/privacy'
1059- | '/robots.txt'
10601041 | '/rss.xml'
1061- | '/sitemap.xml'
10621042 | '/sponsors-embed'
10631043 | '/support'
10641044 | '/tenets'
@@ -1164,9 +1144,7 @@ export interface FileRouteTypes {
11641144 | '/partners'
11651145 | '/partners-embed'
11661146 | '/privacy'
1167- | '/robots.txt'
11681147 | '/rss.xml'
1169- | '/sitemap.xml'
11701148 | '/sponsors-embed'
11711149 | '/support'
11721150 | '/tenets'
@@ -1274,9 +1252,7 @@ export interface FileRouteTypes {
12741252 | '/partners'
12751253 | '/partners-embed'
12761254 | '/privacy'
1277- | '/robots.txt'
12781255 | '/rss.xml'
1279- | '/sitemap.xml'
12801256 | '/sponsors-embed'
12811257 | '/support'
12821258 | '/tenets'
@@ -1388,9 +1364,7 @@ export interface RootRouteChildren {
13881364 PartnersRoute : typeof PartnersRoute
13891365 PartnersEmbedRoute : typeof PartnersEmbedRoute
13901366 PrivacyRoute : typeof PrivacyRoute
1391- RobotsDottxtRoute : typeof RobotsDottxtRoute
13921367 RssDotxmlRoute : typeof RssDotxmlRoute
1393- SitemapDotxmlRoute : typeof SitemapDotxmlRoute
13941368 SponsorsEmbedRoute : typeof SponsorsEmbedRoute
13951369 SupportRoute : typeof SupportRoute
13961370 TenetsRoute : typeof TenetsRoute
@@ -1474,27 +1448,13 @@ declare module '@tanstack/react-router' {
14741448 preLoaderRoute : typeof SponsorsEmbedRouteImport
14751449 parentRoute : typeof rootRouteImport
14761450 }
1477- '/sitemap.xml' : {
1478- id : '/sitemap.xml'
1479- path : '/sitemap.xml'
1480- fullPath : '/sitemap.xml'
1481- preLoaderRoute : typeof SitemapDotxmlRouteImport
1482- parentRoute : typeof rootRouteImport
1483- }
14841451 '/rss.xml' : {
14851452 id : '/rss.xml'
14861453 path : '/rss.xml'
14871454 fullPath : '/rss.xml'
14881455 preLoaderRoute : typeof RssDotxmlRouteImport
14891456 parentRoute : typeof rootRouteImport
14901457 }
1491- '/robots.txt' : {
1492- id : '/robots.txt'
1493- path : '/robots.txt'
1494- fullPath : '/robots.txt'
1495- preLoaderRoute : typeof RobotsDottxtRouteImport
1496- parentRoute : typeof rootRouteImport
1497- }
14981458 '/privacy' : {
14991459 id : '/privacy'
15001460 path : '/privacy'
@@ -2419,9 +2379,7 @@ const rootRouteChildren: RootRouteChildren = {
24192379 PartnersRoute : PartnersRoute ,
24202380 PartnersEmbedRoute : PartnersEmbedRoute ,
24212381 PrivacyRoute : PrivacyRoute ,
2422- RobotsDottxtRoute : RobotsDottxtRoute ,
24232382 RssDotxmlRoute : RssDotxmlRoute ,
2424- SitemapDotxmlRoute : SitemapDotxmlRoute ,
24252383 SponsorsEmbedRoute : SponsorsEmbedRoute ,
24262384 SupportRoute : SupportRoute ,
24272385 TenetsRoute : TenetsRoute ,
0 commit comments