@tanstack/start-plugin-core 1.121.0-alpha.4 → 1.121.0-alpha.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/build-sitemap.cjs +136 -0
- package/dist/cjs/build-sitemap.cjs.map +1 -0
- package/dist/cjs/build-sitemap.d.cts +31 -0
- package/dist/cjs/nitro/nitro-plugin.cjs +9 -0
- package/dist/cjs/nitro/nitro-plugin.cjs.map +1 -1
- package/dist/cjs/plugin.d.cts +88 -481
- package/dist/cjs/prerender.cjs +1 -7
- package/dist/cjs/prerender.cjs.map +1 -1
- package/dist/cjs/schema.cjs +5 -3
- package/dist/cjs/schema.cjs.map +1 -1
- package/dist/cjs/schema.d.cts +490 -1601
- package/dist/esm/build-sitemap.d.ts +31 -0
- package/dist/esm/build-sitemap.js +136 -0
- package/dist/esm/build-sitemap.js.map +1 -0
- package/dist/esm/nitro/nitro-plugin.js +9 -0
- package/dist/esm/nitro/nitro-plugin.js.map +1 -1
- package/dist/esm/plugin.d.ts +88 -481
- package/dist/esm/prerender.js +1 -7
- package/dist/esm/prerender.js.map +1 -1
- package/dist/esm/schema.d.ts +490 -1601
- package/dist/esm/schema.js +5 -3
- package/dist/esm/schema.js.map +1 -1
- package/package.json +4 -4
- package/src/build-sitemap.ts +210 -0
- package/src/nitro/nitro-plugin.ts +9 -13
- package/src/prerender.ts +1 -9
- package/src/schema.ts +5 -6
- package/dist/cjs/nitro/build-sitemap.d.cts +0 -9
- package/dist/esm/nitro/build-sitemap.d.ts +0 -9
- package/src/nitro/build-sitemap.ts +0 -79
package/dist/cjs/plugin.d.cts
CHANGED
|
@@ -135,7 +135,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
135
135
|
base?: string | undefined;
|
|
136
136
|
dir?: string | undefined;
|
|
137
137
|
}>>>;
|
|
138
|
-
pages: z.ZodDefault<z.ZodOptional<z.ZodArray<z.
|
|
138
|
+
pages: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
139
139
|
path: z.ZodString;
|
|
140
140
|
sitemap: z.ZodOptional<z.ZodObject<{
|
|
141
141
|
exclude: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -196,7 +196,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
196
196
|
}, "strip", z.ZodTypeAny, {
|
|
197
197
|
exclude?: boolean | undefined;
|
|
198
198
|
priority?: number | undefined;
|
|
199
|
-
changefreq?: "
|
|
199
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
200
200
|
lastmod?: string | Date | undefined;
|
|
201
201
|
alternateRefs?: {
|
|
202
202
|
href: string;
|
|
@@ -218,7 +218,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
218
218
|
}, {
|
|
219
219
|
exclude?: boolean | undefined;
|
|
220
220
|
priority?: number | undefined;
|
|
221
|
-
changefreq?: "
|
|
221
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
222
222
|
lastmod?: string | Date | undefined;
|
|
223
223
|
alternateRefs?: {
|
|
224
224
|
href: string;
|
|
@@ -309,7 +309,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
309
309
|
}, "strip", z.ZodTypeAny, {
|
|
310
310
|
exclude?: boolean | undefined;
|
|
311
311
|
priority?: number | undefined;
|
|
312
|
-
changefreq?: "
|
|
312
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
313
313
|
lastmod?: string | Date | undefined;
|
|
314
314
|
alternateRefs?: {
|
|
315
315
|
href: string;
|
|
@@ -331,7 +331,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
331
331
|
}, {
|
|
332
332
|
exclude?: boolean | undefined;
|
|
333
333
|
priority?: number | undefined;
|
|
334
|
-
changefreq?: "
|
|
334
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
335
335
|
lastmod?: string | Date | undefined;
|
|
336
336
|
alternateRefs?: {
|
|
337
337
|
href: string;
|
|
@@ -357,7 +357,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
357
357
|
sitemap?: {
|
|
358
358
|
exclude?: boolean | undefined;
|
|
359
359
|
priority?: number | undefined;
|
|
360
|
-
changefreq?: "
|
|
360
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
361
361
|
lastmod?: string | Date | undefined;
|
|
362
362
|
alternateRefs?: {
|
|
363
363
|
href: string;
|
|
@@ -383,7 +383,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
383
383
|
sitemap?: {
|
|
384
384
|
exclude?: boolean | undefined;
|
|
385
385
|
priority?: number | undefined;
|
|
386
|
-
changefreq?: "
|
|
386
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
387
387
|
lastmod?: string | Date | undefined;
|
|
388
388
|
alternateRefs?: {
|
|
389
389
|
href: string;
|
|
@@ -412,7 +412,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
412
412
|
sitemap?: {
|
|
413
413
|
exclude?: boolean | undefined;
|
|
414
414
|
priority?: number | undefined;
|
|
415
|
-
changefreq?: "
|
|
415
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
416
416
|
lastmod?: string | Date | undefined;
|
|
417
417
|
alternateRefs?: {
|
|
418
418
|
href: string;
|
|
@@ -441,7 +441,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
441
441
|
sitemap?: {
|
|
442
442
|
exclude?: boolean | undefined;
|
|
443
443
|
priority?: number | undefined;
|
|
444
|
-
changefreq?: "
|
|
444
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
445
445
|
lastmod?: string | Date | undefined;
|
|
446
446
|
alternateRefs?: {
|
|
447
447
|
href: string;
|
|
@@ -478,7 +478,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
478
478
|
sitemap?: {
|
|
479
479
|
exclude?: boolean | undefined;
|
|
480
480
|
priority?: number | undefined;
|
|
481
|
-
changefreq?: "
|
|
481
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
482
482
|
lastmod?: string | Date | undefined;
|
|
483
483
|
alternateRefs?: {
|
|
484
484
|
href: string;
|
|
@@ -515,7 +515,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
515
515
|
sitemap?: {
|
|
516
516
|
exclude?: boolean | undefined;
|
|
517
517
|
priority?: number | undefined;
|
|
518
|
-
changefreq?: "
|
|
518
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
519
519
|
lastmod?: string | Date | undefined;
|
|
520
520
|
alternateRefs?: {
|
|
521
521
|
href: string;
|
|
@@ -555,7 +555,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
555
555
|
sitemap?: {
|
|
556
556
|
exclude?: boolean | undefined;
|
|
557
557
|
priority?: number | undefined;
|
|
558
|
-
changefreq?: "
|
|
558
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
559
559
|
lastmod?: string | Date | undefined;
|
|
560
560
|
alternateRefs?: {
|
|
561
561
|
href: string;
|
|
@@ -583,7 +583,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
583
583
|
sitemap?: {
|
|
584
584
|
exclude?: boolean | undefined;
|
|
585
585
|
priority?: number | undefined;
|
|
586
|
-
changefreq?: "
|
|
586
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
587
587
|
lastmod?: string | Date | undefined;
|
|
588
588
|
alternateRefs?: {
|
|
589
589
|
href: string;
|
|
@@ -619,7 +619,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
619
619
|
sitemap?: {
|
|
620
620
|
exclude?: boolean | undefined;
|
|
621
621
|
priority?: number | undefined;
|
|
622
|
-
changefreq?: "
|
|
622
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
623
623
|
lastmod?: string | Date | undefined;
|
|
624
624
|
alternateRefs?: {
|
|
625
625
|
href: string;
|
|
@@ -647,7 +647,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
647
647
|
sitemap?: {
|
|
648
648
|
exclude?: boolean | undefined;
|
|
649
649
|
priority?: number | undefined;
|
|
650
|
-
changefreq?: "
|
|
650
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
651
651
|
lastmod?: string | Date | undefined;
|
|
652
652
|
alternateRefs?: {
|
|
653
653
|
href: string;
|
|
@@ -668,309 +668,18 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
668
668
|
} | undefined;
|
|
669
669
|
} | undefined;
|
|
670
670
|
fromCrawl?: boolean | undefined;
|
|
671
|
-
}
|
|
672
|
-
sitemap: z.ZodOptional<z.ZodObject<
|
|
673
|
-
enabled: z.ZodOptional<z.ZodBoolean
|
|
674
|
-
outputPath: z.ZodOptional<z.ZodString>;
|
|
675
|
-
autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
|
|
676
|
-
crawlLinks: z.ZodOptional<z.ZodBoolean>;
|
|
677
|
-
retryCount: z.ZodOptional<z.ZodNumber>;
|
|
678
|
-
retryDelay: z.ZodOptional<z.ZodNumber>;
|
|
679
|
-
onSuccess: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
680
|
-
page: z.ZodObject<{
|
|
681
|
-
path: z.ZodString;
|
|
682
|
-
sitemap: z.ZodOptional<z.ZodObject<{
|
|
683
|
-
exclude: z.ZodOptional<z.ZodBoolean>;
|
|
684
|
-
priority: z.ZodOptional<z.ZodNumber>;
|
|
685
|
-
changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
|
|
686
|
-
lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
|
|
687
|
-
alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
688
|
-
href: z.ZodString;
|
|
689
|
-
hreflang: z.ZodString;
|
|
690
|
-
}, "strip", z.ZodTypeAny, {
|
|
691
|
-
href: string;
|
|
692
|
-
hreflang: string;
|
|
693
|
-
}, {
|
|
694
|
-
href: string;
|
|
695
|
-
hreflang: string;
|
|
696
|
-
}>, "many">>;
|
|
697
|
-
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
698
|
-
loc: z.ZodString;
|
|
699
|
-
caption: z.ZodOptional<z.ZodString>;
|
|
700
|
-
title: z.ZodOptional<z.ZodString>;
|
|
701
|
-
}, "strip", z.ZodTypeAny, {
|
|
702
|
-
loc: string;
|
|
703
|
-
caption?: string | undefined;
|
|
704
|
-
title?: string | undefined;
|
|
705
|
-
}, {
|
|
706
|
-
loc: string;
|
|
707
|
-
caption?: string | undefined;
|
|
708
|
-
title?: string | undefined;
|
|
709
|
-
}>, "many">>;
|
|
710
|
-
news: z.ZodOptional<z.ZodObject<{
|
|
711
|
-
publication: z.ZodObject<{
|
|
712
|
-
name: z.ZodString;
|
|
713
|
-
language: z.ZodString;
|
|
714
|
-
}, "strip", z.ZodTypeAny, {
|
|
715
|
-
name: string;
|
|
716
|
-
language: string;
|
|
717
|
-
}, {
|
|
718
|
-
name: string;
|
|
719
|
-
language: string;
|
|
720
|
-
}>;
|
|
721
|
-
publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
722
|
-
title: z.ZodString;
|
|
723
|
-
}, "strip", z.ZodTypeAny, {
|
|
724
|
-
title: string;
|
|
725
|
-
publication: {
|
|
726
|
-
name: string;
|
|
727
|
-
language: string;
|
|
728
|
-
};
|
|
729
|
-
publicationDate: string | Date;
|
|
730
|
-
}, {
|
|
731
|
-
title: string;
|
|
732
|
-
publication: {
|
|
733
|
-
name: string;
|
|
734
|
-
language: string;
|
|
735
|
-
};
|
|
736
|
-
publicationDate: string | Date;
|
|
737
|
-
}>>;
|
|
738
|
-
}, "strip", z.ZodTypeAny, {
|
|
739
|
-
exclude?: boolean | undefined;
|
|
740
|
-
priority?: number | undefined;
|
|
741
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
742
|
-
lastmod?: string | Date | undefined;
|
|
743
|
-
alternateRefs?: {
|
|
744
|
-
href: string;
|
|
745
|
-
hreflang: string;
|
|
746
|
-
}[] | undefined;
|
|
747
|
-
images?: {
|
|
748
|
-
loc: string;
|
|
749
|
-
caption?: string | undefined;
|
|
750
|
-
title?: string | undefined;
|
|
751
|
-
}[] | undefined;
|
|
752
|
-
news?: {
|
|
753
|
-
title: string;
|
|
754
|
-
publication: {
|
|
755
|
-
name: string;
|
|
756
|
-
language: string;
|
|
757
|
-
};
|
|
758
|
-
publicationDate: string | Date;
|
|
759
|
-
} | undefined;
|
|
760
|
-
}, {
|
|
761
|
-
exclude?: boolean | undefined;
|
|
762
|
-
priority?: number | undefined;
|
|
763
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
764
|
-
lastmod?: string | Date | undefined;
|
|
765
|
-
alternateRefs?: {
|
|
766
|
-
href: string;
|
|
767
|
-
hreflang: string;
|
|
768
|
-
}[] | undefined;
|
|
769
|
-
images?: {
|
|
770
|
-
loc: string;
|
|
771
|
-
caption?: string | undefined;
|
|
772
|
-
title?: string | undefined;
|
|
773
|
-
}[] | undefined;
|
|
774
|
-
news?: {
|
|
775
|
-
title: string;
|
|
776
|
-
publication: {
|
|
777
|
-
name: string;
|
|
778
|
-
language: string;
|
|
779
|
-
};
|
|
780
|
-
publicationDate: string | Date;
|
|
781
|
-
} | undefined;
|
|
782
|
-
}>>;
|
|
783
|
-
fromCrawl: z.ZodOptional<z.ZodBoolean>;
|
|
784
|
-
}, "strip", z.ZodTypeAny, {
|
|
785
|
-
path: string;
|
|
786
|
-
sitemap?: {
|
|
787
|
-
exclude?: boolean | undefined;
|
|
788
|
-
priority?: number | undefined;
|
|
789
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
790
|
-
lastmod?: string | Date | undefined;
|
|
791
|
-
alternateRefs?: {
|
|
792
|
-
href: string;
|
|
793
|
-
hreflang: string;
|
|
794
|
-
}[] | undefined;
|
|
795
|
-
images?: {
|
|
796
|
-
loc: string;
|
|
797
|
-
caption?: string | undefined;
|
|
798
|
-
title?: string | undefined;
|
|
799
|
-
}[] | undefined;
|
|
800
|
-
news?: {
|
|
801
|
-
title: string;
|
|
802
|
-
publication: {
|
|
803
|
-
name: string;
|
|
804
|
-
language: string;
|
|
805
|
-
};
|
|
806
|
-
publicationDate: string | Date;
|
|
807
|
-
} | undefined;
|
|
808
|
-
} | undefined;
|
|
809
|
-
fromCrawl?: boolean | undefined;
|
|
810
|
-
}, {
|
|
811
|
-
path: string;
|
|
812
|
-
sitemap?: {
|
|
813
|
-
exclude?: boolean | undefined;
|
|
814
|
-
priority?: number | undefined;
|
|
815
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
816
|
-
lastmod?: string | Date | undefined;
|
|
817
|
-
alternateRefs?: {
|
|
818
|
-
href: string;
|
|
819
|
-
hreflang: string;
|
|
820
|
-
}[] | undefined;
|
|
821
|
-
images?: {
|
|
822
|
-
loc: string;
|
|
823
|
-
caption?: string | undefined;
|
|
824
|
-
title?: string | undefined;
|
|
825
|
-
}[] | undefined;
|
|
826
|
-
news?: {
|
|
827
|
-
title: string;
|
|
828
|
-
publication: {
|
|
829
|
-
name: string;
|
|
830
|
-
language: string;
|
|
831
|
-
};
|
|
832
|
-
publicationDate: string | Date;
|
|
833
|
-
} | undefined;
|
|
834
|
-
} | undefined;
|
|
835
|
-
fromCrawl?: boolean | undefined;
|
|
836
|
-
}>;
|
|
837
|
-
html: z.ZodString;
|
|
838
|
-
}, "strip", z.ZodTypeAny, {
|
|
839
|
-
page: {
|
|
840
|
-
path: string;
|
|
841
|
-
sitemap?: {
|
|
842
|
-
exclude?: boolean | undefined;
|
|
843
|
-
priority?: number | undefined;
|
|
844
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
845
|
-
lastmod?: string | Date | undefined;
|
|
846
|
-
alternateRefs?: {
|
|
847
|
-
href: string;
|
|
848
|
-
hreflang: string;
|
|
849
|
-
}[] | undefined;
|
|
850
|
-
images?: {
|
|
851
|
-
loc: string;
|
|
852
|
-
caption?: string | undefined;
|
|
853
|
-
title?: string | undefined;
|
|
854
|
-
}[] | undefined;
|
|
855
|
-
news?: {
|
|
856
|
-
title: string;
|
|
857
|
-
publication: {
|
|
858
|
-
name: string;
|
|
859
|
-
language: string;
|
|
860
|
-
};
|
|
861
|
-
publicationDate: string | Date;
|
|
862
|
-
} | undefined;
|
|
863
|
-
} | undefined;
|
|
864
|
-
fromCrawl?: boolean | undefined;
|
|
865
|
-
};
|
|
866
|
-
html: string;
|
|
867
|
-
}, {
|
|
868
|
-
page: {
|
|
869
|
-
path: string;
|
|
870
|
-
sitemap?: {
|
|
871
|
-
exclude?: boolean | undefined;
|
|
872
|
-
priority?: number | undefined;
|
|
873
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
874
|
-
lastmod?: string | Date | undefined;
|
|
875
|
-
alternateRefs?: {
|
|
876
|
-
href: string;
|
|
877
|
-
hreflang: string;
|
|
878
|
-
}[] | undefined;
|
|
879
|
-
images?: {
|
|
880
|
-
loc: string;
|
|
881
|
-
caption?: string | undefined;
|
|
882
|
-
title?: string | undefined;
|
|
883
|
-
}[] | undefined;
|
|
884
|
-
news?: {
|
|
885
|
-
title: string;
|
|
886
|
-
publication: {
|
|
887
|
-
name: string;
|
|
888
|
-
language: string;
|
|
889
|
-
};
|
|
890
|
-
publicationDate: string | Date;
|
|
891
|
-
} | undefined;
|
|
892
|
-
} | undefined;
|
|
893
|
-
fromCrawl?: boolean | undefined;
|
|
894
|
-
};
|
|
895
|
-
html: string;
|
|
896
|
-
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
897
|
-
}, {
|
|
671
|
+
}>, "many">>>;
|
|
672
|
+
sitemap: z.ZodOptional<z.ZodObject<{
|
|
673
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
898
674
|
host: z.ZodOptional<z.ZodString>;
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
crawlLinks?: boolean | undefined;
|
|
904
|
-
retryCount?: number | undefined;
|
|
905
|
-
retryDelay?: number | undefined;
|
|
906
|
-
onSuccess?: ((args_0: {
|
|
907
|
-
page: {
|
|
908
|
-
path: string;
|
|
909
|
-
sitemap?: {
|
|
910
|
-
exclude?: boolean | undefined;
|
|
911
|
-
priority?: number | undefined;
|
|
912
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
913
|
-
lastmod?: string | Date | undefined;
|
|
914
|
-
alternateRefs?: {
|
|
915
|
-
href: string;
|
|
916
|
-
hreflang: string;
|
|
917
|
-
}[] | undefined;
|
|
918
|
-
images?: {
|
|
919
|
-
loc: string;
|
|
920
|
-
caption?: string | undefined;
|
|
921
|
-
title?: string | undefined;
|
|
922
|
-
}[] | undefined;
|
|
923
|
-
news?: {
|
|
924
|
-
title: string;
|
|
925
|
-
publication: {
|
|
926
|
-
name: string;
|
|
927
|
-
language: string;
|
|
928
|
-
};
|
|
929
|
-
publicationDate: string | Date;
|
|
930
|
-
} | undefined;
|
|
931
|
-
} | undefined;
|
|
932
|
-
fromCrawl?: boolean | undefined;
|
|
933
|
-
};
|
|
934
|
-
html: string;
|
|
935
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
675
|
+
outputPath: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
676
|
+
}, "strip", z.ZodTypeAny, {
|
|
677
|
+
enabled: boolean;
|
|
678
|
+
outputPath: string;
|
|
936
679
|
host?: string | undefined;
|
|
937
680
|
}, {
|
|
938
681
|
enabled?: boolean | undefined;
|
|
939
682
|
outputPath?: string | undefined;
|
|
940
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
941
|
-
crawlLinks?: boolean | undefined;
|
|
942
|
-
retryCount?: number | undefined;
|
|
943
|
-
retryDelay?: number | undefined;
|
|
944
|
-
onSuccess?: ((args_0: {
|
|
945
|
-
page: {
|
|
946
|
-
path: string;
|
|
947
|
-
sitemap?: {
|
|
948
|
-
exclude?: boolean | undefined;
|
|
949
|
-
priority?: number | undefined;
|
|
950
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
951
|
-
lastmod?: string | Date | undefined;
|
|
952
|
-
alternateRefs?: {
|
|
953
|
-
href: string;
|
|
954
|
-
hreflang: string;
|
|
955
|
-
}[] | undefined;
|
|
956
|
-
images?: {
|
|
957
|
-
loc: string;
|
|
958
|
-
caption?: string | undefined;
|
|
959
|
-
title?: string | undefined;
|
|
960
|
-
}[] | undefined;
|
|
961
|
-
news?: {
|
|
962
|
-
title: string;
|
|
963
|
-
publication: {
|
|
964
|
-
name: string;
|
|
965
|
-
language: string;
|
|
966
|
-
};
|
|
967
|
-
publicationDate: string | Date;
|
|
968
|
-
} | undefined;
|
|
969
|
-
} | undefined;
|
|
970
|
-
fromCrawl?: boolean | undefined;
|
|
971
|
-
};
|
|
972
|
-
html: string;
|
|
973
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
974
683
|
host?: string | undefined;
|
|
975
684
|
}>>;
|
|
976
685
|
prerender: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
@@ -1037,7 +746,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1037
746
|
}, "strip", z.ZodTypeAny, {
|
|
1038
747
|
exclude?: boolean | undefined;
|
|
1039
748
|
priority?: number | undefined;
|
|
1040
|
-
changefreq?: "
|
|
749
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1041
750
|
lastmod?: string | Date | undefined;
|
|
1042
751
|
alternateRefs?: {
|
|
1043
752
|
href: string;
|
|
@@ -1059,7 +768,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1059
768
|
}, {
|
|
1060
769
|
exclude?: boolean | undefined;
|
|
1061
770
|
priority?: number | undefined;
|
|
1062
|
-
changefreq?: "
|
|
771
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1063
772
|
lastmod?: string | Date | undefined;
|
|
1064
773
|
alternateRefs?: {
|
|
1065
774
|
href: string;
|
|
@@ -1150,7 +859,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1150
859
|
}, "strip", z.ZodTypeAny, {
|
|
1151
860
|
exclude?: boolean | undefined;
|
|
1152
861
|
priority?: number | undefined;
|
|
1153
|
-
changefreq?: "
|
|
862
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1154
863
|
lastmod?: string | Date | undefined;
|
|
1155
864
|
alternateRefs?: {
|
|
1156
865
|
href: string;
|
|
@@ -1172,7 +881,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1172
881
|
}, {
|
|
1173
882
|
exclude?: boolean | undefined;
|
|
1174
883
|
priority?: number | undefined;
|
|
1175
|
-
changefreq?: "
|
|
884
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1176
885
|
lastmod?: string | Date | undefined;
|
|
1177
886
|
alternateRefs?: {
|
|
1178
887
|
href: string;
|
|
@@ -1198,7 +907,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1198
907
|
sitemap?: {
|
|
1199
908
|
exclude?: boolean | undefined;
|
|
1200
909
|
priority?: number | undefined;
|
|
1201
|
-
changefreq?: "
|
|
910
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1202
911
|
lastmod?: string | Date | undefined;
|
|
1203
912
|
alternateRefs?: {
|
|
1204
913
|
href: string;
|
|
@@ -1224,7 +933,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1224
933
|
sitemap?: {
|
|
1225
934
|
exclude?: boolean | undefined;
|
|
1226
935
|
priority?: number | undefined;
|
|
1227
|
-
changefreq?: "
|
|
936
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1228
937
|
lastmod?: string | Date | undefined;
|
|
1229
938
|
alternateRefs?: {
|
|
1230
939
|
href: string;
|
|
@@ -1253,7 +962,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1253
962
|
sitemap?: {
|
|
1254
963
|
exclude?: boolean | undefined;
|
|
1255
964
|
priority?: number | undefined;
|
|
1256
|
-
changefreq?: "
|
|
965
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1257
966
|
lastmod?: string | Date | undefined;
|
|
1258
967
|
alternateRefs?: {
|
|
1259
968
|
href: string;
|
|
@@ -1282,7 +991,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1282
991
|
sitemap?: {
|
|
1283
992
|
exclude?: boolean | undefined;
|
|
1284
993
|
priority?: number | undefined;
|
|
1285
|
-
changefreq?: "
|
|
994
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1286
995
|
lastmod?: string | Date | undefined;
|
|
1287
996
|
alternateRefs?: {
|
|
1288
997
|
href: string;
|
|
@@ -1319,7 +1028,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1319
1028
|
sitemap?: {
|
|
1320
1029
|
exclude?: boolean | undefined;
|
|
1321
1030
|
priority?: number | undefined;
|
|
1322
|
-
changefreq?: "
|
|
1031
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1323
1032
|
lastmod?: string | Date | undefined;
|
|
1324
1033
|
alternateRefs?: {
|
|
1325
1034
|
href: string;
|
|
@@ -1356,7 +1065,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1356
1065
|
sitemap?: {
|
|
1357
1066
|
exclude?: boolean | undefined;
|
|
1358
1067
|
priority?: number | undefined;
|
|
1359
|
-
changefreq?: "
|
|
1068
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1360
1069
|
lastmod?: string | Date | undefined;
|
|
1361
1070
|
alternateRefs?: {
|
|
1362
1071
|
href: string;
|
|
@@ -1396,7 +1105,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1396
1105
|
sitemap?: {
|
|
1397
1106
|
exclude?: boolean | undefined;
|
|
1398
1107
|
priority?: number | undefined;
|
|
1399
|
-
changefreq?: "
|
|
1108
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1400
1109
|
lastmod?: string | Date | undefined;
|
|
1401
1110
|
alternateRefs?: {
|
|
1402
1111
|
href: string;
|
|
@@ -1424,7 +1133,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1424
1133
|
sitemap?: {
|
|
1425
1134
|
exclude?: boolean | undefined;
|
|
1426
1135
|
priority?: number | undefined;
|
|
1427
|
-
changefreq?: "
|
|
1136
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1428
1137
|
lastmod?: string | Date | undefined;
|
|
1429
1138
|
alternateRefs?: {
|
|
1430
1139
|
href: string;
|
|
@@ -1460,7 +1169,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1460
1169
|
sitemap?: {
|
|
1461
1170
|
exclude?: boolean | undefined;
|
|
1462
1171
|
priority?: number | undefined;
|
|
1463
|
-
changefreq?: "
|
|
1172
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1464
1173
|
lastmod?: string | Date | undefined;
|
|
1465
1174
|
alternateRefs?: {
|
|
1466
1175
|
href: string;
|
|
@@ -1488,7 +1197,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1488
1197
|
sitemap?: {
|
|
1489
1198
|
exclude?: boolean | undefined;
|
|
1490
1199
|
priority?: number | undefined;
|
|
1491
|
-
changefreq?: "
|
|
1200
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1492
1201
|
lastmod?: string | Date | undefined;
|
|
1493
1202
|
alternateRefs?: {
|
|
1494
1203
|
href: string;
|
|
@@ -1527,7 +1236,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1527
1236
|
sitemap?: {
|
|
1528
1237
|
exclude?: boolean | undefined;
|
|
1529
1238
|
priority?: number | undefined;
|
|
1530
|
-
changefreq?: "
|
|
1239
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1531
1240
|
lastmod?: string | Date | undefined;
|
|
1532
1241
|
alternateRefs?: {
|
|
1533
1242
|
href: string;
|
|
@@ -1555,7 +1264,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1555
1264
|
sitemap?: {
|
|
1556
1265
|
exclude?: boolean | undefined;
|
|
1557
1266
|
priority?: number | undefined;
|
|
1558
|
-
changefreq?: "
|
|
1267
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1559
1268
|
lastmod?: string | Date | undefined;
|
|
1560
1269
|
alternateRefs?: {
|
|
1561
1270
|
href: string;
|
|
@@ -1596,7 +1305,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1596
1305
|
sitemap?: {
|
|
1597
1306
|
exclude?: boolean | undefined;
|
|
1598
1307
|
priority?: number | undefined;
|
|
1599
|
-
changefreq?: "
|
|
1308
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1600
1309
|
lastmod?: string | Date | undefined;
|
|
1601
1310
|
alternateRefs?: {
|
|
1602
1311
|
href: string;
|
|
@@ -1624,7 +1333,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1624
1333
|
sitemap?: {
|
|
1625
1334
|
exclude?: boolean | undefined;
|
|
1626
1335
|
priority?: number | undefined;
|
|
1627
|
-
changefreq?: "
|
|
1336
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1628
1337
|
lastmod?: string | Date | undefined;
|
|
1629
1338
|
alternateRefs?: {
|
|
1630
1339
|
href: string;
|
|
@@ -1718,7 +1427,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1718
1427
|
}, "strip", z.ZodTypeAny, {
|
|
1719
1428
|
exclude?: boolean | undefined;
|
|
1720
1429
|
priority?: number | undefined;
|
|
1721
|
-
changefreq?: "
|
|
1430
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1722
1431
|
lastmod?: string | Date | undefined;
|
|
1723
1432
|
alternateRefs?: {
|
|
1724
1433
|
href: string;
|
|
@@ -1740,7 +1449,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1740
1449
|
}, {
|
|
1741
1450
|
exclude?: boolean | undefined;
|
|
1742
1451
|
priority?: number | undefined;
|
|
1743
|
-
changefreq?: "
|
|
1452
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1744
1453
|
lastmod?: string | Date | undefined;
|
|
1745
1454
|
alternateRefs?: {
|
|
1746
1455
|
href: string;
|
|
@@ -1766,7 +1475,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1766
1475
|
sitemap?: {
|
|
1767
1476
|
exclude?: boolean | undefined;
|
|
1768
1477
|
priority?: number | undefined;
|
|
1769
|
-
changefreq?: "
|
|
1478
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1770
1479
|
lastmod?: string | Date | undefined;
|
|
1771
1480
|
alternateRefs?: {
|
|
1772
1481
|
href: string;
|
|
@@ -1792,7 +1501,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1792
1501
|
sitemap?: {
|
|
1793
1502
|
exclude?: boolean | undefined;
|
|
1794
1503
|
priority?: number | undefined;
|
|
1795
|
-
changefreq?: "
|
|
1504
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1796
1505
|
lastmod?: string | Date | undefined;
|
|
1797
1506
|
alternateRefs?: {
|
|
1798
1507
|
href: string;
|
|
@@ -1821,7 +1530,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1821
1530
|
sitemap?: {
|
|
1822
1531
|
exclude?: boolean | undefined;
|
|
1823
1532
|
priority?: number | undefined;
|
|
1824
|
-
changefreq?: "
|
|
1533
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1825
1534
|
lastmod?: string | Date | undefined;
|
|
1826
1535
|
alternateRefs?: {
|
|
1827
1536
|
href: string;
|
|
@@ -1850,7 +1559,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1850
1559
|
sitemap?: {
|
|
1851
1560
|
exclude?: boolean | undefined;
|
|
1852
1561
|
priority?: number | undefined;
|
|
1853
|
-
changefreq?: "
|
|
1562
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1854
1563
|
lastmod?: string | Date | undefined;
|
|
1855
1564
|
alternateRefs?: {
|
|
1856
1565
|
href: string;
|
|
@@ -1887,7 +1596,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1887
1596
|
sitemap?: {
|
|
1888
1597
|
exclude?: boolean | undefined;
|
|
1889
1598
|
priority?: number | undefined;
|
|
1890
|
-
changefreq?: "
|
|
1599
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1891
1600
|
lastmod?: string | Date | undefined;
|
|
1892
1601
|
alternateRefs?: {
|
|
1893
1602
|
href: string;
|
|
@@ -1924,7 +1633,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1924
1633
|
sitemap?: {
|
|
1925
1634
|
exclude?: boolean | undefined;
|
|
1926
1635
|
priority?: number | undefined;
|
|
1927
|
-
changefreq?: "
|
|
1636
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1928
1637
|
lastmod?: string | Date | undefined;
|
|
1929
1638
|
alternateRefs?: {
|
|
1930
1639
|
href: string;
|
|
@@ -2021,7 +1730,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2021
1730
|
}, "strip", z.ZodTypeAny, {
|
|
2022
1731
|
exclude?: boolean | undefined;
|
|
2023
1732
|
priority?: number | undefined;
|
|
2024
|
-
changefreq?: "
|
|
1733
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2025
1734
|
lastmod?: string | Date | undefined;
|
|
2026
1735
|
alternateRefs?: {
|
|
2027
1736
|
href: string;
|
|
@@ -2043,7 +1752,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2043
1752
|
}, {
|
|
2044
1753
|
exclude?: boolean | undefined;
|
|
2045
1754
|
priority?: number | undefined;
|
|
2046
|
-
changefreq?: "
|
|
1755
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2047
1756
|
lastmod?: string | Date | undefined;
|
|
2048
1757
|
alternateRefs?: {
|
|
2049
1758
|
href: string;
|
|
@@ -2069,7 +1778,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2069
1778
|
sitemap?: {
|
|
2070
1779
|
exclude?: boolean | undefined;
|
|
2071
1780
|
priority?: number | undefined;
|
|
2072
|
-
changefreq?: "
|
|
1781
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2073
1782
|
lastmod?: string | Date | undefined;
|
|
2074
1783
|
alternateRefs?: {
|
|
2075
1784
|
href: string;
|
|
@@ -2095,7 +1804,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2095
1804
|
sitemap?: {
|
|
2096
1805
|
exclude?: boolean | undefined;
|
|
2097
1806
|
priority?: number | undefined;
|
|
2098
|
-
changefreq?: "
|
|
1807
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2099
1808
|
lastmod?: string | Date | undefined;
|
|
2100
1809
|
alternateRefs?: {
|
|
2101
1810
|
href: string;
|
|
@@ -2124,7 +1833,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2124
1833
|
sitemap?: {
|
|
2125
1834
|
exclude?: boolean | undefined;
|
|
2126
1835
|
priority?: number | undefined;
|
|
2127
|
-
changefreq?: "
|
|
1836
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2128
1837
|
lastmod?: string | Date | undefined;
|
|
2129
1838
|
alternateRefs?: {
|
|
2130
1839
|
href: string;
|
|
@@ -2153,7 +1862,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2153
1862
|
sitemap?: {
|
|
2154
1863
|
exclude?: boolean | undefined;
|
|
2155
1864
|
priority?: number | undefined;
|
|
2156
|
-
changefreq?: "
|
|
1865
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2157
1866
|
lastmod?: string | Date | undefined;
|
|
2158
1867
|
alternateRefs?: {
|
|
2159
1868
|
href: string;
|
|
@@ -2190,7 +1899,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2190
1899
|
sitemap?: {
|
|
2191
1900
|
exclude?: boolean | undefined;
|
|
2192
1901
|
priority?: number | undefined;
|
|
2193
|
-
changefreq?: "
|
|
1902
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2194
1903
|
lastmod?: string | Date | undefined;
|
|
2195
1904
|
alternateRefs?: {
|
|
2196
1905
|
href: string;
|
|
@@ -2227,7 +1936,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2227
1936
|
sitemap?: {
|
|
2228
1937
|
exclude?: boolean | undefined;
|
|
2229
1938
|
priority?: number | undefined;
|
|
2230
|
-
changefreq?: "
|
|
1939
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2231
1940
|
lastmod?: string | Date | undefined;
|
|
2232
1941
|
alternateRefs?: {
|
|
2233
1942
|
href: string;
|
|
@@ -2264,7 +1973,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2264
1973
|
sitemap?: {
|
|
2265
1974
|
exclude?: boolean | undefined;
|
|
2266
1975
|
priority?: number | undefined;
|
|
2267
|
-
changefreq?: "
|
|
1976
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2268
1977
|
lastmod?: string | Date | undefined;
|
|
2269
1978
|
alternateRefs?: {
|
|
2270
1979
|
href: string;
|
|
@@ -2301,7 +2010,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2301
2010
|
sitemap?: {
|
|
2302
2011
|
exclude?: boolean | undefined;
|
|
2303
2012
|
priority?: number | undefined;
|
|
2304
|
-
changefreq?: "
|
|
2013
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2305
2014
|
lastmod?: string | Date | undefined;
|
|
2306
2015
|
alternateRefs?: {
|
|
2307
2016
|
href: string;
|
|
@@ -2340,7 +2049,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2340
2049
|
sitemap?: {
|
|
2341
2050
|
exclude?: boolean | undefined;
|
|
2342
2051
|
priority?: number | undefined;
|
|
2343
|
-
changefreq?: "
|
|
2052
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2344
2053
|
lastmod?: string | Date | undefined;
|
|
2345
2054
|
alternateRefs?: {
|
|
2346
2055
|
href: string;
|
|
@@ -2381,7 +2090,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2381
2090
|
sitemap?: {
|
|
2382
2091
|
exclude?: boolean | undefined;
|
|
2383
2092
|
priority?: number | undefined;
|
|
2384
|
-
changefreq?: "
|
|
2093
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2385
2094
|
lastmod?: string | Date | undefined;
|
|
2386
2095
|
alternateRefs?: {
|
|
2387
2096
|
href: string;
|
|
@@ -2457,7 +2166,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2457
2166
|
base: string;
|
|
2458
2167
|
dir: string;
|
|
2459
2168
|
};
|
|
2460
|
-
pages:
|
|
2169
|
+
pages: {
|
|
2461
2170
|
path: string;
|
|
2462
2171
|
prerender?: {
|
|
2463
2172
|
enabled?: boolean | undefined;
|
|
@@ -2472,7 +2181,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2472
2181
|
sitemap?: {
|
|
2473
2182
|
exclude?: boolean | undefined;
|
|
2474
2183
|
priority?: number | undefined;
|
|
2475
|
-
changefreq?: "
|
|
2184
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2476
2185
|
lastmod?: string | Date | undefined;
|
|
2477
2186
|
alternateRefs?: {
|
|
2478
2187
|
href: string;
|
|
@@ -2500,7 +2209,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2500
2209
|
sitemap?: {
|
|
2501
2210
|
exclude?: boolean | undefined;
|
|
2502
2211
|
priority?: number | undefined;
|
|
2503
|
-
changefreq?: "
|
|
2212
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2504
2213
|
lastmod?: string | Date | undefined;
|
|
2505
2214
|
alternateRefs?: {
|
|
2506
2215
|
href: string;
|
|
@@ -2521,7 +2230,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2521
2230
|
} | undefined;
|
|
2522
2231
|
} | undefined;
|
|
2523
2232
|
fromCrawl?: boolean | undefined;
|
|
2524
|
-
}
|
|
2233
|
+
}[];
|
|
2525
2234
|
target?: import('nitropack/presets').PresetNameInput | undefined;
|
|
2526
2235
|
prerender?: ({
|
|
2527
2236
|
filter?: ((args_0: {
|
|
@@ -2539,7 +2248,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2539
2248
|
sitemap?: {
|
|
2540
2249
|
exclude?: boolean | undefined;
|
|
2541
2250
|
priority?: number | undefined;
|
|
2542
|
-
changefreq?: "
|
|
2251
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2543
2252
|
lastmod?: string | Date | undefined;
|
|
2544
2253
|
alternateRefs?: {
|
|
2545
2254
|
href: string;
|
|
@@ -2567,7 +2276,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2567
2276
|
sitemap?: {
|
|
2568
2277
|
exclude?: boolean | undefined;
|
|
2569
2278
|
priority?: number | undefined;
|
|
2570
|
-
changefreq?: "
|
|
2279
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2571
2280
|
lastmod?: string | Date | undefined;
|
|
2572
2281
|
alternateRefs?: {
|
|
2573
2282
|
href: string;
|
|
@@ -2605,7 +2314,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2605
2314
|
sitemap?: {
|
|
2606
2315
|
exclude?: boolean | undefined;
|
|
2607
2316
|
priority?: number | undefined;
|
|
2608
|
-
changefreq?: "
|
|
2317
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2609
2318
|
lastmod?: string | Date | undefined;
|
|
2610
2319
|
alternateRefs?: {
|
|
2611
2320
|
href: string;
|
|
@@ -2631,42 +2340,8 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2631
2340
|
}, ...args: unknown[]) => any) | undefined;
|
|
2632
2341
|
}) | undefined;
|
|
2633
2342
|
sitemap?: {
|
|
2634
|
-
enabled
|
|
2635
|
-
outputPath
|
|
2636
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
2637
|
-
crawlLinks?: boolean | undefined;
|
|
2638
|
-
retryCount?: number | undefined;
|
|
2639
|
-
retryDelay?: number | undefined;
|
|
2640
|
-
onSuccess?: ((args_0: {
|
|
2641
|
-
page: {
|
|
2642
|
-
path: string;
|
|
2643
|
-
sitemap?: {
|
|
2644
|
-
exclude?: boolean | undefined;
|
|
2645
|
-
priority?: number | undefined;
|
|
2646
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2647
|
-
lastmod?: string | Date | undefined;
|
|
2648
|
-
alternateRefs?: {
|
|
2649
|
-
href: string;
|
|
2650
|
-
hreflang: string;
|
|
2651
|
-
}[] | undefined;
|
|
2652
|
-
images?: {
|
|
2653
|
-
loc: string;
|
|
2654
|
-
caption?: string | undefined;
|
|
2655
|
-
title?: string | undefined;
|
|
2656
|
-
}[] | undefined;
|
|
2657
|
-
news?: {
|
|
2658
|
-
title: string;
|
|
2659
|
-
publication: {
|
|
2660
|
-
name: string;
|
|
2661
|
-
language: string;
|
|
2662
|
-
};
|
|
2663
|
-
publicationDate: string | Date;
|
|
2664
|
-
} | undefined;
|
|
2665
|
-
} | undefined;
|
|
2666
|
-
fromCrawl?: boolean | undefined;
|
|
2667
|
-
};
|
|
2668
|
-
html: string;
|
|
2669
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
2343
|
+
enabled: boolean;
|
|
2344
|
+
outputPath: string;
|
|
2670
2345
|
host?: string | undefined;
|
|
2671
2346
|
} | undefined;
|
|
2672
2347
|
spa?: {
|
|
@@ -2683,7 +2358,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2683
2358
|
sitemap?: {
|
|
2684
2359
|
exclude?: boolean | undefined;
|
|
2685
2360
|
priority?: number | undefined;
|
|
2686
|
-
changefreq?: "
|
|
2361
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2687
2362
|
lastmod?: string | Date | undefined;
|
|
2688
2363
|
alternateRefs?: {
|
|
2689
2364
|
href: string;
|
|
@@ -2730,7 +2405,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2730
2405
|
sitemap?: {
|
|
2731
2406
|
exclude?: boolean | undefined;
|
|
2732
2407
|
priority?: number | undefined;
|
|
2733
|
-
changefreq?: "
|
|
2408
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2734
2409
|
lastmod?: string | Date | undefined;
|
|
2735
2410
|
alternateRefs?: {
|
|
2736
2411
|
href: string;
|
|
@@ -2758,7 +2433,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2758
2433
|
sitemap?: {
|
|
2759
2434
|
exclude?: boolean | undefined;
|
|
2760
2435
|
priority?: number | undefined;
|
|
2761
|
-
changefreq?: "
|
|
2436
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2762
2437
|
lastmod?: string | Date | undefined;
|
|
2763
2438
|
alternateRefs?: {
|
|
2764
2439
|
href: string;
|
|
@@ -2796,7 +2471,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2796
2471
|
sitemap?: {
|
|
2797
2472
|
exclude?: boolean | undefined;
|
|
2798
2473
|
priority?: number | undefined;
|
|
2799
|
-
changefreq?: "
|
|
2474
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2800
2475
|
lastmod?: string | Date | undefined;
|
|
2801
2476
|
alternateRefs?: {
|
|
2802
2477
|
href: string;
|
|
@@ -2868,43 +2543,9 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2868
2543
|
sitemap?: {
|
|
2869
2544
|
enabled?: boolean | undefined;
|
|
2870
2545
|
outputPath?: string | undefined;
|
|
2871
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
2872
|
-
crawlLinks?: boolean | undefined;
|
|
2873
|
-
retryCount?: number | undefined;
|
|
2874
|
-
retryDelay?: number | undefined;
|
|
2875
|
-
onSuccess?: ((args_0: {
|
|
2876
|
-
page: {
|
|
2877
|
-
path: string;
|
|
2878
|
-
sitemap?: {
|
|
2879
|
-
exclude?: boolean | undefined;
|
|
2880
|
-
priority?: number | undefined;
|
|
2881
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2882
|
-
lastmod?: string | Date | undefined;
|
|
2883
|
-
alternateRefs?: {
|
|
2884
|
-
href: string;
|
|
2885
|
-
hreflang: string;
|
|
2886
|
-
}[] | undefined;
|
|
2887
|
-
images?: {
|
|
2888
|
-
loc: string;
|
|
2889
|
-
caption?: string | undefined;
|
|
2890
|
-
title?: string | undefined;
|
|
2891
|
-
}[] | undefined;
|
|
2892
|
-
news?: {
|
|
2893
|
-
title: string;
|
|
2894
|
-
publication: {
|
|
2895
|
-
name: string;
|
|
2896
|
-
language: string;
|
|
2897
|
-
};
|
|
2898
|
-
publicationDate: string | Date;
|
|
2899
|
-
} | undefined;
|
|
2900
|
-
} | undefined;
|
|
2901
|
-
fromCrawl?: boolean | undefined;
|
|
2902
|
-
};
|
|
2903
|
-
html: string;
|
|
2904
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
2905
2546
|
host?: string | undefined;
|
|
2906
2547
|
} | undefined;
|
|
2907
|
-
pages?:
|
|
2548
|
+
pages?: {
|
|
2908
2549
|
path: string;
|
|
2909
2550
|
prerender?: {
|
|
2910
2551
|
enabled?: boolean | undefined;
|
|
@@ -2919,7 +2560,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2919
2560
|
sitemap?: {
|
|
2920
2561
|
exclude?: boolean | undefined;
|
|
2921
2562
|
priority?: number | undefined;
|
|
2922
|
-
changefreq?: "
|
|
2563
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2923
2564
|
lastmod?: string | Date | undefined;
|
|
2924
2565
|
alternateRefs?: {
|
|
2925
2566
|
href: string;
|
|
@@ -2947,7 +2588,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2947
2588
|
sitemap?: {
|
|
2948
2589
|
exclude?: boolean | undefined;
|
|
2949
2590
|
priority?: number | undefined;
|
|
2950
|
-
changefreq?: "
|
|
2591
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2951
2592
|
lastmod?: string | Date | undefined;
|
|
2952
2593
|
alternateRefs?: {
|
|
2953
2594
|
href: string;
|
|
@@ -2968,7 +2609,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2968
2609
|
} | undefined;
|
|
2969
2610
|
} | undefined;
|
|
2970
2611
|
fromCrawl?: boolean | undefined;
|
|
2971
|
-
}
|
|
2612
|
+
}[] | undefined;
|
|
2972
2613
|
spa?: {
|
|
2973
2614
|
prerender?: {
|
|
2974
2615
|
enabled?: boolean | undefined;
|
|
@@ -2983,7 +2624,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2983
2624
|
sitemap?: {
|
|
2984
2625
|
exclude?: boolean | undefined;
|
|
2985
2626
|
priority?: number | undefined;
|
|
2986
|
-
changefreq?: "
|
|
2627
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2987
2628
|
lastmod?: string | Date | undefined;
|
|
2988
2629
|
alternateRefs?: {
|
|
2989
2630
|
href: string;
|
|
@@ -3062,7 +2703,7 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
3062
2703
|
base: string;
|
|
3063
2704
|
dir: string;
|
|
3064
2705
|
};
|
|
3065
|
-
pages:
|
|
2706
|
+
pages: {
|
|
3066
2707
|
path: string;
|
|
3067
2708
|
prerender?: {
|
|
3068
2709
|
enabled?: boolean | undefined;
|
|
@@ -3077,7 +2718,7 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
3077
2718
|
sitemap?: {
|
|
3078
2719
|
exclude?: boolean | undefined;
|
|
3079
2720
|
priority?: number | undefined;
|
|
3080
|
-
changefreq?: "
|
|
2721
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
3081
2722
|
lastmod?: string | Date | undefined;
|
|
3082
2723
|
alternateRefs?: {
|
|
3083
2724
|
href: string;
|
|
@@ -3105,7 +2746,7 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
3105
2746
|
sitemap?: {
|
|
3106
2747
|
exclude?: boolean | undefined;
|
|
3107
2748
|
priority?: number | undefined;
|
|
3108
|
-
changefreq?: "
|
|
2749
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
3109
2750
|
lastmod?: string | Date | undefined;
|
|
3110
2751
|
alternateRefs?: {
|
|
3111
2752
|
href: string;
|
|
@@ -3126,7 +2767,7 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
3126
2767
|
} | undefined;
|
|
3127
2768
|
} | undefined;
|
|
3128
2769
|
fromCrawl?: boolean | undefined;
|
|
3129
|
-
}
|
|
2770
|
+
}[];
|
|
3130
2771
|
target?: import('nitropack/presets').PresetNameInput | undefined;
|
|
3131
2772
|
prerender?: ({
|
|
3132
2773
|
filter?: ((args_0: {
|
|
@@ -3144,7 +2785,7 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
3144
2785
|
sitemap?: {
|
|
3145
2786
|
exclude?: boolean | undefined;
|
|
3146
2787
|
priority?: number | undefined;
|
|
3147
|
-
changefreq?: "
|
|
2788
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
3148
2789
|
lastmod?: string | Date | undefined;
|
|
3149
2790
|
alternateRefs?: {
|
|
3150
2791
|
href: string;
|
|
@@ -3172,7 +2813,7 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
3172
2813
|
sitemap?: {
|
|
3173
2814
|
exclude?: boolean | undefined;
|
|
3174
2815
|
priority?: number | undefined;
|
|
3175
|
-
changefreq?: "
|
|
2816
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
3176
2817
|
lastmod?: string | Date | undefined;
|
|
3177
2818
|
alternateRefs?: {
|
|
3178
2819
|
href: string;
|
|
@@ -3210,7 +2851,7 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
3210
2851
|
sitemap?: {
|
|
3211
2852
|
exclude?: boolean | undefined;
|
|
3212
2853
|
priority?: number | undefined;
|
|
3213
|
-
changefreq?: "
|
|
2854
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
3214
2855
|
lastmod?: string | Date | undefined;
|
|
3215
2856
|
alternateRefs?: {
|
|
3216
2857
|
href: string;
|
|
@@ -3236,42 +2877,8 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
3236
2877
|
}, ...args: unknown[]) => any) | undefined;
|
|
3237
2878
|
}) | undefined;
|
|
3238
2879
|
sitemap?: {
|
|
3239
|
-
enabled
|
|
3240
|
-
outputPath
|
|
3241
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
3242
|
-
crawlLinks?: boolean | undefined;
|
|
3243
|
-
retryCount?: number | undefined;
|
|
3244
|
-
retryDelay?: number | undefined;
|
|
3245
|
-
onSuccess?: ((args_0: {
|
|
3246
|
-
page: {
|
|
3247
|
-
path: string;
|
|
3248
|
-
sitemap?: {
|
|
3249
|
-
exclude?: boolean | undefined;
|
|
3250
|
-
priority?: number | undefined;
|
|
3251
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
3252
|
-
lastmod?: string | Date | undefined;
|
|
3253
|
-
alternateRefs?: {
|
|
3254
|
-
href: string;
|
|
3255
|
-
hreflang: string;
|
|
3256
|
-
}[] | undefined;
|
|
3257
|
-
images?: {
|
|
3258
|
-
loc: string;
|
|
3259
|
-
caption?: string | undefined;
|
|
3260
|
-
title?: string | undefined;
|
|
3261
|
-
}[] | undefined;
|
|
3262
|
-
news?: {
|
|
3263
|
-
title: string;
|
|
3264
|
-
publication: {
|
|
3265
|
-
name: string;
|
|
3266
|
-
language: string;
|
|
3267
|
-
};
|
|
3268
|
-
publicationDate: string | Date;
|
|
3269
|
-
} | undefined;
|
|
3270
|
-
} | undefined;
|
|
3271
|
-
fromCrawl?: boolean | undefined;
|
|
3272
|
-
};
|
|
3273
|
-
html: string;
|
|
3274
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
2880
|
+
enabled: boolean;
|
|
2881
|
+
outputPath: string;
|
|
3275
2882
|
host?: string | undefined;
|
|
3276
2883
|
} | undefined;
|
|
3277
2884
|
spa?: {
|
|
@@ -3288,7 +2895,7 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
3288
2895
|
sitemap?: {
|
|
3289
2896
|
exclude?: boolean | undefined;
|
|
3290
2897
|
priority?: number | undefined;
|
|
3291
|
-
changefreq?: "
|
|
2898
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
3292
2899
|
lastmod?: string | Date | undefined;
|
|
3293
2900
|
alternateRefs?: {
|
|
3294
2901
|
href: string;
|