@tanstack/start-plugin-core 1.120.4-alpha.13 → 1.120.4-alpha.15
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/nitro/nitro-plugin.cjs +36 -2
- package/dist/cjs/nitro/nitro-plugin.cjs.map +1 -1
- package/dist/cjs/plugin.cjs +1 -2
- package/dist/cjs/plugin.cjs.map +1 -1
- package/dist/cjs/plugin.d.cts +622 -0
- package/dist/cjs/prerender.cjs +22 -13
- package/dist/cjs/prerender.cjs.map +1 -1
- package/dist/cjs/schema.cjs +15 -1
- package/dist/cjs/schema.cjs.map +1 -1
- package/dist/cjs/schema.d.cts +2297 -520
- package/dist/esm/nitro/nitro-plugin.js +36 -2
- package/dist/esm/nitro/nitro-plugin.js.map +1 -1
- package/dist/esm/plugin.d.ts +622 -0
- package/dist/esm/plugin.js +1 -2
- package/dist/esm/plugin.js.map +1 -1
- package/dist/esm/prerender.js +22 -13
- package/dist/esm/prerender.js.map +1 -1
- package/dist/esm/schema.d.ts +2297 -520
- package/dist/esm/schema.js +15 -1
- package/dist/esm/schema.js.map +1 -1
- package/package.json +3 -3
- package/src/nitro/nitro-plugin.ts +40 -0
- package/src/plugin.ts +0 -1
- package/src/prerender.ts +29 -17
- package/src/schema.ts +18 -0
package/dist/cjs/plugin.d.cts
CHANGED
|
@@ -245,6 +245,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
245
245
|
}, {
|
|
246
246
|
prerender: z.ZodOptional<z.ZodObject<{
|
|
247
247
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
248
|
+
outputPath: z.ZodOptional<z.ZodString>;
|
|
248
249
|
autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
|
|
249
250
|
crawlLinks: z.ZodOptional<z.ZodBoolean>;
|
|
250
251
|
retryCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -469,6 +470,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
469
470
|
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
470
471
|
}, "strip", z.ZodTypeAny, {
|
|
471
472
|
enabled?: boolean | undefined;
|
|
473
|
+
outputPath?: string | undefined;
|
|
472
474
|
autoSubfolderIndex?: boolean | undefined;
|
|
473
475
|
crawlLinks?: boolean | undefined;
|
|
474
476
|
retryCount?: number | undefined;
|
|
@@ -505,6 +507,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
505
507
|
}, ...args: unknown[]) => any) | undefined;
|
|
506
508
|
}, {
|
|
507
509
|
enabled?: boolean | undefined;
|
|
510
|
+
outputPath?: string | undefined;
|
|
508
511
|
autoSubfolderIndex?: boolean | undefined;
|
|
509
512
|
crawlLinks?: boolean | undefined;
|
|
510
513
|
retryCount?: number | undefined;
|
|
@@ -544,6 +547,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
544
547
|
path: string;
|
|
545
548
|
prerender?: {
|
|
546
549
|
enabled?: boolean | undefined;
|
|
550
|
+
outputPath?: string | undefined;
|
|
547
551
|
autoSubfolderIndex?: boolean | undefined;
|
|
548
552
|
crawlLinks?: boolean | undefined;
|
|
549
553
|
retryCount?: number | undefined;
|
|
@@ -607,6 +611,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
607
611
|
path: string;
|
|
608
612
|
prerender?: {
|
|
609
613
|
enabled?: boolean | undefined;
|
|
614
|
+
outputPath?: string | undefined;
|
|
610
615
|
autoSubfolderIndex?: boolean | undefined;
|
|
611
616
|
crawlLinks?: boolean | undefined;
|
|
612
617
|
retryCount?: number | undefined;
|
|
@@ -669,6 +674,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
669
674
|
}>]>, "many">>>;
|
|
670
675
|
sitemap: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
671
676
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
677
|
+
outputPath: z.ZodOptional<z.ZodString>;
|
|
672
678
|
autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
|
|
673
679
|
crawlLinks: z.ZodOptional<z.ZodBoolean>;
|
|
674
680
|
retryCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -896,6 +902,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
896
902
|
}>, "strip", z.ZodTypeAny, {
|
|
897
903
|
host?: string | undefined;
|
|
898
904
|
enabled?: boolean | undefined;
|
|
905
|
+
outputPath?: string | undefined;
|
|
899
906
|
autoSubfolderIndex?: boolean | undefined;
|
|
900
907
|
crawlLinks?: boolean | undefined;
|
|
901
908
|
retryCount?: number | undefined;
|
|
@@ -933,6 +940,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
933
940
|
}, {
|
|
934
941
|
host?: string | undefined;
|
|
935
942
|
enabled?: boolean | undefined;
|
|
943
|
+
outputPath?: string | undefined;
|
|
936
944
|
autoSubfolderIndex?: boolean | undefined;
|
|
937
945
|
crawlLinks?: boolean | undefined;
|
|
938
946
|
retryCount?: number | undefined;
|
|
@@ -1078,6 +1086,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1078
1086
|
}, {
|
|
1079
1087
|
prerender: z.ZodOptional<z.ZodObject<{
|
|
1080
1088
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1089
|
+
outputPath: z.ZodOptional<z.ZodString>;
|
|
1081
1090
|
autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
|
|
1082
1091
|
crawlLinks: z.ZodOptional<z.ZodBoolean>;
|
|
1083
1092
|
retryCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1302,6 +1311,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1302
1311
|
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
1303
1312
|
}, "strip", z.ZodTypeAny, {
|
|
1304
1313
|
enabled?: boolean | undefined;
|
|
1314
|
+
outputPath?: string | undefined;
|
|
1305
1315
|
autoSubfolderIndex?: boolean | undefined;
|
|
1306
1316
|
crawlLinks?: boolean | undefined;
|
|
1307
1317
|
retryCount?: number | undefined;
|
|
@@ -1338,6 +1348,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1338
1348
|
}, ...args: unknown[]) => any) | undefined;
|
|
1339
1349
|
}, {
|
|
1340
1350
|
enabled?: boolean | undefined;
|
|
1351
|
+
outputPath?: string | undefined;
|
|
1341
1352
|
autoSubfolderIndex?: boolean | undefined;
|
|
1342
1353
|
crawlLinks?: boolean | undefined;
|
|
1343
1354
|
retryCount?: number | undefined;
|
|
@@ -1377,6 +1388,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1377
1388
|
path: string;
|
|
1378
1389
|
prerender?: {
|
|
1379
1390
|
enabled?: boolean | undefined;
|
|
1391
|
+
outputPath?: string | undefined;
|
|
1380
1392
|
autoSubfolderIndex?: boolean | undefined;
|
|
1381
1393
|
crawlLinks?: boolean | undefined;
|
|
1382
1394
|
retryCount?: number | undefined;
|
|
@@ -1440,6 +1452,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1440
1452
|
path: string;
|
|
1441
1453
|
prerender?: {
|
|
1442
1454
|
enabled?: boolean | undefined;
|
|
1455
|
+
outputPath?: string | undefined;
|
|
1443
1456
|
autoSubfolderIndex?: boolean | undefined;
|
|
1444
1457
|
crawlLinks?: boolean | undefined;
|
|
1445
1458
|
retryCount?: number | undefined;
|
|
@@ -1506,6 +1519,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1506
1519
|
path: string;
|
|
1507
1520
|
prerender?: {
|
|
1508
1521
|
enabled?: boolean | undefined;
|
|
1522
|
+
outputPath?: string | undefined;
|
|
1509
1523
|
autoSubfolderIndex?: boolean | undefined;
|
|
1510
1524
|
crawlLinks?: boolean | undefined;
|
|
1511
1525
|
retryCount?: number | undefined;
|
|
@@ -1574,6 +1588,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1574
1588
|
path: string;
|
|
1575
1589
|
prerender?: {
|
|
1576
1590
|
enabled?: boolean | undefined;
|
|
1591
|
+
outputPath?: string | undefined;
|
|
1577
1592
|
autoSubfolderIndex?: boolean | undefined;
|
|
1578
1593
|
crawlLinks?: boolean | undefined;
|
|
1579
1594
|
retryCount?: number | undefined;
|
|
@@ -1639,6 +1654,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1639
1654
|
failOnError?: boolean | undefined;
|
|
1640
1655
|
}>, z.ZodOptional<z.ZodObject<{
|
|
1641
1656
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1657
|
+
outputPath: z.ZodOptional<z.ZodString>;
|
|
1642
1658
|
autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
|
|
1643
1659
|
crawlLinks: z.ZodOptional<z.ZodBoolean>;
|
|
1644
1660
|
retryCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1863,6 +1879,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1863
1879
|
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
1864
1880
|
}, "strip", z.ZodTypeAny, {
|
|
1865
1881
|
enabled?: boolean | undefined;
|
|
1882
|
+
outputPath?: string | undefined;
|
|
1866
1883
|
autoSubfolderIndex?: boolean | undefined;
|
|
1867
1884
|
crawlLinks?: boolean | undefined;
|
|
1868
1885
|
retryCount?: number | undefined;
|
|
@@ -1899,6 +1916,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1899
1916
|
}, ...args: unknown[]) => any) | undefined;
|
|
1900
1917
|
}, {
|
|
1901
1918
|
enabled?: boolean | undefined;
|
|
1919
|
+
outputPath?: string | undefined;
|
|
1902
1920
|
autoSubfolderIndex?: boolean | undefined;
|
|
1903
1921
|
crawlLinks?: boolean | undefined;
|
|
1904
1922
|
retryCount?: number | undefined;
|
|
@@ -1934,6 +1952,469 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1934
1952
|
html: string;
|
|
1935
1953
|
}, ...args: unknown[]) => any) | undefined;
|
|
1936
1954
|
}>>>>;
|
|
1955
|
+
shell: z.ZodOptional<z.ZodObject<{
|
|
1956
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1957
|
+
maskPath: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1958
|
+
autoRedirect: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1959
|
+
prerender: z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
1960
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1961
|
+
outputPath: z.ZodOptional<z.ZodString>;
|
|
1962
|
+
autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
|
|
1963
|
+
crawlLinks: z.ZodOptional<z.ZodBoolean>;
|
|
1964
|
+
retryCount: z.ZodOptional<z.ZodNumber>;
|
|
1965
|
+
retryDelay: z.ZodOptional<z.ZodNumber>;
|
|
1966
|
+
onSuccess: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
1967
|
+
page: z.ZodObject<{
|
|
1968
|
+
path: z.ZodString;
|
|
1969
|
+
sitemap: z.ZodOptional<z.ZodObject<{
|
|
1970
|
+
exclude: z.ZodOptional<z.ZodBoolean>;
|
|
1971
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
1972
|
+
changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
|
|
1973
|
+
lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
|
|
1974
|
+
alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1975
|
+
href: z.ZodString;
|
|
1976
|
+
hreflang: z.ZodString;
|
|
1977
|
+
}, "strip", z.ZodTypeAny, {
|
|
1978
|
+
href: string;
|
|
1979
|
+
hreflang: string;
|
|
1980
|
+
}, {
|
|
1981
|
+
href: string;
|
|
1982
|
+
hreflang: string;
|
|
1983
|
+
}>, "many">>;
|
|
1984
|
+
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1985
|
+
loc: z.ZodString;
|
|
1986
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
1987
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1988
|
+
}, "strip", z.ZodTypeAny, {
|
|
1989
|
+
loc: string;
|
|
1990
|
+
caption?: string | undefined;
|
|
1991
|
+
title?: string | undefined;
|
|
1992
|
+
}, {
|
|
1993
|
+
loc: string;
|
|
1994
|
+
caption?: string | undefined;
|
|
1995
|
+
title?: string | undefined;
|
|
1996
|
+
}>, "many">>;
|
|
1997
|
+
news: z.ZodOptional<z.ZodObject<{
|
|
1998
|
+
publication: z.ZodObject<{
|
|
1999
|
+
name: z.ZodString;
|
|
2000
|
+
language: z.ZodString;
|
|
2001
|
+
}, "strip", z.ZodTypeAny, {
|
|
2002
|
+
name: string;
|
|
2003
|
+
language: string;
|
|
2004
|
+
}, {
|
|
2005
|
+
name: string;
|
|
2006
|
+
language: string;
|
|
2007
|
+
}>;
|
|
2008
|
+
publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
2009
|
+
title: z.ZodString;
|
|
2010
|
+
}, "strip", z.ZodTypeAny, {
|
|
2011
|
+
title: string;
|
|
2012
|
+
publication: {
|
|
2013
|
+
name: string;
|
|
2014
|
+
language: string;
|
|
2015
|
+
};
|
|
2016
|
+
publicationDate: string | Date;
|
|
2017
|
+
}, {
|
|
2018
|
+
title: string;
|
|
2019
|
+
publication: {
|
|
2020
|
+
name: string;
|
|
2021
|
+
language: string;
|
|
2022
|
+
};
|
|
2023
|
+
publicationDate: string | Date;
|
|
2024
|
+
}>>;
|
|
2025
|
+
}, "strip", z.ZodTypeAny, {
|
|
2026
|
+
lastmod?: string | Date | undefined;
|
|
2027
|
+
exclude?: boolean | undefined;
|
|
2028
|
+
priority?: number | undefined;
|
|
2029
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2030
|
+
alternateRefs?: {
|
|
2031
|
+
href: string;
|
|
2032
|
+
hreflang: string;
|
|
2033
|
+
}[] | undefined;
|
|
2034
|
+
images?: {
|
|
2035
|
+
loc: string;
|
|
2036
|
+
caption?: string | undefined;
|
|
2037
|
+
title?: string | undefined;
|
|
2038
|
+
}[] | undefined;
|
|
2039
|
+
news?: {
|
|
2040
|
+
title: string;
|
|
2041
|
+
publication: {
|
|
2042
|
+
name: string;
|
|
2043
|
+
language: string;
|
|
2044
|
+
};
|
|
2045
|
+
publicationDate: string | Date;
|
|
2046
|
+
} | undefined;
|
|
2047
|
+
}, {
|
|
2048
|
+
lastmod?: string | Date | undefined;
|
|
2049
|
+
exclude?: boolean | undefined;
|
|
2050
|
+
priority?: number | undefined;
|
|
2051
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2052
|
+
alternateRefs?: {
|
|
2053
|
+
href: string;
|
|
2054
|
+
hreflang: string;
|
|
2055
|
+
}[] | undefined;
|
|
2056
|
+
images?: {
|
|
2057
|
+
loc: string;
|
|
2058
|
+
caption?: string | undefined;
|
|
2059
|
+
title?: string | undefined;
|
|
2060
|
+
}[] | undefined;
|
|
2061
|
+
news?: {
|
|
2062
|
+
title: string;
|
|
2063
|
+
publication: {
|
|
2064
|
+
name: string;
|
|
2065
|
+
language: string;
|
|
2066
|
+
};
|
|
2067
|
+
publicationDate: string | Date;
|
|
2068
|
+
} | undefined;
|
|
2069
|
+
}>>;
|
|
2070
|
+
fromCrawl: z.ZodOptional<z.ZodBoolean>;
|
|
2071
|
+
}, "strip", z.ZodTypeAny, {
|
|
2072
|
+
path: string;
|
|
2073
|
+
sitemap?: {
|
|
2074
|
+
lastmod?: string | Date | undefined;
|
|
2075
|
+
exclude?: boolean | undefined;
|
|
2076
|
+
priority?: number | undefined;
|
|
2077
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2078
|
+
alternateRefs?: {
|
|
2079
|
+
href: string;
|
|
2080
|
+
hreflang: string;
|
|
2081
|
+
}[] | undefined;
|
|
2082
|
+
images?: {
|
|
2083
|
+
loc: string;
|
|
2084
|
+
caption?: string | undefined;
|
|
2085
|
+
title?: string | undefined;
|
|
2086
|
+
}[] | undefined;
|
|
2087
|
+
news?: {
|
|
2088
|
+
title: string;
|
|
2089
|
+
publication: {
|
|
2090
|
+
name: string;
|
|
2091
|
+
language: string;
|
|
2092
|
+
};
|
|
2093
|
+
publicationDate: string | Date;
|
|
2094
|
+
} | undefined;
|
|
2095
|
+
} | undefined;
|
|
2096
|
+
fromCrawl?: boolean | undefined;
|
|
2097
|
+
}, {
|
|
2098
|
+
path: string;
|
|
2099
|
+
sitemap?: {
|
|
2100
|
+
lastmod?: string | Date | undefined;
|
|
2101
|
+
exclude?: boolean | undefined;
|
|
2102
|
+
priority?: number | undefined;
|
|
2103
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2104
|
+
alternateRefs?: {
|
|
2105
|
+
href: string;
|
|
2106
|
+
hreflang: string;
|
|
2107
|
+
}[] | undefined;
|
|
2108
|
+
images?: {
|
|
2109
|
+
loc: string;
|
|
2110
|
+
caption?: string | undefined;
|
|
2111
|
+
title?: string | undefined;
|
|
2112
|
+
}[] | undefined;
|
|
2113
|
+
news?: {
|
|
2114
|
+
title: string;
|
|
2115
|
+
publication: {
|
|
2116
|
+
name: string;
|
|
2117
|
+
language: string;
|
|
2118
|
+
};
|
|
2119
|
+
publicationDate: string | Date;
|
|
2120
|
+
} | undefined;
|
|
2121
|
+
} | undefined;
|
|
2122
|
+
fromCrawl?: boolean | undefined;
|
|
2123
|
+
}>;
|
|
2124
|
+
html: z.ZodString;
|
|
2125
|
+
}, "strip", z.ZodTypeAny, {
|
|
2126
|
+
page: {
|
|
2127
|
+
path: string;
|
|
2128
|
+
sitemap?: {
|
|
2129
|
+
lastmod?: string | Date | undefined;
|
|
2130
|
+
exclude?: boolean | undefined;
|
|
2131
|
+
priority?: number | undefined;
|
|
2132
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2133
|
+
alternateRefs?: {
|
|
2134
|
+
href: string;
|
|
2135
|
+
hreflang: string;
|
|
2136
|
+
}[] | undefined;
|
|
2137
|
+
images?: {
|
|
2138
|
+
loc: string;
|
|
2139
|
+
caption?: string | undefined;
|
|
2140
|
+
title?: string | undefined;
|
|
2141
|
+
}[] | undefined;
|
|
2142
|
+
news?: {
|
|
2143
|
+
title: string;
|
|
2144
|
+
publication: {
|
|
2145
|
+
name: string;
|
|
2146
|
+
language: string;
|
|
2147
|
+
};
|
|
2148
|
+
publicationDate: string | Date;
|
|
2149
|
+
} | undefined;
|
|
2150
|
+
} | undefined;
|
|
2151
|
+
fromCrawl?: boolean | undefined;
|
|
2152
|
+
};
|
|
2153
|
+
html: string;
|
|
2154
|
+
}, {
|
|
2155
|
+
page: {
|
|
2156
|
+
path: string;
|
|
2157
|
+
sitemap?: {
|
|
2158
|
+
lastmod?: string | Date | undefined;
|
|
2159
|
+
exclude?: boolean | undefined;
|
|
2160
|
+
priority?: number | undefined;
|
|
2161
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2162
|
+
alternateRefs?: {
|
|
2163
|
+
href: string;
|
|
2164
|
+
hreflang: string;
|
|
2165
|
+
}[] | undefined;
|
|
2166
|
+
images?: {
|
|
2167
|
+
loc: string;
|
|
2168
|
+
caption?: string | undefined;
|
|
2169
|
+
title?: string | undefined;
|
|
2170
|
+
}[] | undefined;
|
|
2171
|
+
news?: {
|
|
2172
|
+
title: string;
|
|
2173
|
+
publication: {
|
|
2174
|
+
name: string;
|
|
2175
|
+
language: string;
|
|
2176
|
+
};
|
|
2177
|
+
publicationDate: string | Date;
|
|
2178
|
+
} | undefined;
|
|
2179
|
+
} | undefined;
|
|
2180
|
+
fromCrawl?: boolean | undefined;
|
|
2181
|
+
};
|
|
2182
|
+
html: string;
|
|
2183
|
+
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
2184
|
+
}, "strip", z.ZodTypeAny, {
|
|
2185
|
+
enabled?: boolean | undefined;
|
|
2186
|
+
outputPath?: string | undefined;
|
|
2187
|
+
autoSubfolderIndex?: boolean | undefined;
|
|
2188
|
+
crawlLinks?: boolean | undefined;
|
|
2189
|
+
retryCount?: number | undefined;
|
|
2190
|
+
retryDelay?: number | undefined;
|
|
2191
|
+
onSuccess?: ((args_0: {
|
|
2192
|
+
page: {
|
|
2193
|
+
path: string;
|
|
2194
|
+
sitemap?: {
|
|
2195
|
+
lastmod?: string | Date | undefined;
|
|
2196
|
+
exclude?: boolean | undefined;
|
|
2197
|
+
priority?: number | undefined;
|
|
2198
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2199
|
+
alternateRefs?: {
|
|
2200
|
+
href: string;
|
|
2201
|
+
hreflang: string;
|
|
2202
|
+
}[] | undefined;
|
|
2203
|
+
images?: {
|
|
2204
|
+
loc: string;
|
|
2205
|
+
caption?: string | undefined;
|
|
2206
|
+
title?: string | undefined;
|
|
2207
|
+
}[] | undefined;
|
|
2208
|
+
news?: {
|
|
2209
|
+
title: string;
|
|
2210
|
+
publication: {
|
|
2211
|
+
name: string;
|
|
2212
|
+
language: string;
|
|
2213
|
+
};
|
|
2214
|
+
publicationDate: string | Date;
|
|
2215
|
+
} | undefined;
|
|
2216
|
+
} | undefined;
|
|
2217
|
+
fromCrawl?: boolean | undefined;
|
|
2218
|
+
};
|
|
2219
|
+
html: string;
|
|
2220
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
2221
|
+
}, {
|
|
2222
|
+
enabled?: boolean | undefined;
|
|
2223
|
+
outputPath?: string | undefined;
|
|
2224
|
+
autoSubfolderIndex?: boolean | undefined;
|
|
2225
|
+
crawlLinks?: boolean | undefined;
|
|
2226
|
+
retryCount?: number | undefined;
|
|
2227
|
+
retryDelay?: number | undefined;
|
|
2228
|
+
onSuccess?: ((args_0: {
|
|
2229
|
+
page: {
|
|
2230
|
+
path: string;
|
|
2231
|
+
sitemap?: {
|
|
2232
|
+
lastmod?: string | Date | undefined;
|
|
2233
|
+
exclude?: boolean | undefined;
|
|
2234
|
+
priority?: number | undefined;
|
|
2235
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2236
|
+
alternateRefs?: {
|
|
2237
|
+
href: string;
|
|
2238
|
+
hreflang: string;
|
|
2239
|
+
}[] | undefined;
|
|
2240
|
+
images?: {
|
|
2241
|
+
loc: string;
|
|
2242
|
+
caption?: string | undefined;
|
|
2243
|
+
title?: string | undefined;
|
|
2244
|
+
}[] | undefined;
|
|
2245
|
+
news?: {
|
|
2246
|
+
title: string;
|
|
2247
|
+
publication: {
|
|
2248
|
+
name: string;
|
|
2249
|
+
language: string;
|
|
2250
|
+
};
|
|
2251
|
+
publicationDate: string | Date;
|
|
2252
|
+
} | undefined;
|
|
2253
|
+
} | undefined;
|
|
2254
|
+
fromCrawl?: boolean | undefined;
|
|
2255
|
+
};
|
|
2256
|
+
html: string;
|
|
2257
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
2258
|
+
}>>>, {
|
|
2259
|
+
enabled: boolean;
|
|
2260
|
+
outputPath: string;
|
|
2261
|
+
autoSubfolderIndex?: boolean | undefined;
|
|
2262
|
+
crawlLinks: boolean;
|
|
2263
|
+
retryCount: number;
|
|
2264
|
+
retryDelay?: number | undefined;
|
|
2265
|
+
onSuccess?: ((args_0: {
|
|
2266
|
+
page: {
|
|
2267
|
+
path: string;
|
|
2268
|
+
sitemap?: {
|
|
2269
|
+
lastmod?: string | Date | undefined;
|
|
2270
|
+
exclude?: boolean | undefined;
|
|
2271
|
+
priority?: number | undefined;
|
|
2272
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2273
|
+
alternateRefs?: {
|
|
2274
|
+
href: string;
|
|
2275
|
+
hreflang: string;
|
|
2276
|
+
}[] | undefined;
|
|
2277
|
+
images?: {
|
|
2278
|
+
loc: string;
|
|
2279
|
+
caption?: string | undefined;
|
|
2280
|
+
title?: string | undefined;
|
|
2281
|
+
}[] | undefined;
|
|
2282
|
+
news?: {
|
|
2283
|
+
title: string;
|
|
2284
|
+
publication: {
|
|
2285
|
+
name: string;
|
|
2286
|
+
language: string;
|
|
2287
|
+
};
|
|
2288
|
+
publicationDate: string | Date;
|
|
2289
|
+
} | undefined;
|
|
2290
|
+
} | undefined;
|
|
2291
|
+
fromCrawl?: boolean | undefined;
|
|
2292
|
+
};
|
|
2293
|
+
html: string;
|
|
2294
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
2295
|
+
}, {
|
|
2296
|
+
enabled?: boolean | undefined;
|
|
2297
|
+
outputPath?: string | undefined;
|
|
2298
|
+
autoSubfolderIndex?: boolean | undefined;
|
|
2299
|
+
crawlLinks?: boolean | undefined;
|
|
2300
|
+
retryCount?: number | undefined;
|
|
2301
|
+
retryDelay?: number | undefined;
|
|
2302
|
+
onSuccess?: ((args_0: {
|
|
2303
|
+
page: {
|
|
2304
|
+
path: string;
|
|
2305
|
+
sitemap?: {
|
|
2306
|
+
lastmod?: string | Date | undefined;
|
|
2307
|
+
exclude?: boolean | undefined;
|
|
2308
|
+
priority?: number | undefined;
|
|
2309
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2310
|
+
alternateRefs?: {
|
|
2311
|
+
href: string;
|
|
2312
|
+
hreflang: string;
|
|
2313
|
+
}[] | undefined;
|
|
2314
|
+
images?: {
|
|
2315
|
+
loc: string;
|
|
2316
|
+
caption?: string | undefined;
|
|
2317
|
+
title?: string | undefined;
|
|
2318
|
+
}[] | undefined;
|
|
2319
|
+
news?: {
|
|
2320
|
+
title: string;
|
|
2321
|
+
publication: {
|
|
2322
|
+
name: string;
|
|
2323
|
+
language: string;
|
|
2324
|
+
};
|
|
2325
|
+
publicationDate: string | Date;
|
|
2326
|
+
} | undefined;
|
|
2327
|
+
} | undefined;
|
|
2328
|
+
fromCrawl?: boolean | undefined;
|
|
2329
|
+
};
|
|
2330
|
+
html: string;
|
|
2331
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
2332
|
+
} | undefined>;
|
|
2333
|
+
}, "strip", z.ZodTypeAny, {
|
|
2334
|
+
prerender: {
|
|
2335
|
+
enabled: boolean;
|
|
2336
|
+
outputPath: string;
|
|
2337
|
+
autoSubfolderIndex?: boolean | undefined;
|
|
2338
|
+
crawlLinks: boolean;
|
|
2339
|
+
retryCount: number;
|
|
2340
|
+
retryDelay?: number | undefined;
|
|
2341
|
+
onSuccess?: ((args_0: {
|
|
2342
|
+
page: {
|
|
2343
|
+
path: string;
|
|
2344
|
+
sitemap?: {
|
|
2345
|
+
lastmod?: string | Date | undefined;
|
|
2346
|
+
exclude?: boolean | undefined;
|
|
2347
|
+
priority?: number | undefined;
|
|
2348
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2349
|
+
alternateRefs?: {
|
|
2350
|
+
href: string;
|
|
2351
|
+
hreflang: string;
|
|
2352
|
+
}[] | undefined;
|
|
2353
|
+
images?: {
|
|
2354
|
+
loc: string;
|
|
2355
|
+
caption?: string | undefined;
|
|
2356
|
+
title?: string | undefined;
|
|
2357
|
+
}[] | undefined;
|
|
2358
|
+
news?: {
|
|
2359
|
+
title: string;
|
|
2360
|
+
publication: {
|
|
2361
|
+
name: string;
|
|
2362
|
+
language: string;
|
|
2363
|
+
};
|
|
2364
|
+
publicationDate: string | Date;
|
|
2365
|
+
} | undefined;
|
|
2366
|
+
} | undefined;
|
|
2367
|
+
fromCrawl?: boolean | undefined;
|
|
2368
|
+
};
|
|
2369
|
+
html: string;
|
|
2370
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
2371
|
+
};
|
|
2372
|
+
enabled: boolean;
|
|
2373
|
+
maskPath: string;
|
|
2374
|
+
autoRedirect: boolean;
|
|
2375
|
+
}, {
|
|
2376
|
+
prerender?: {
|
|
2377
|
+
enabled?: boolean | undefined;
|
|
2378
|
+
outputPath?: string | undefined;
|
|
2379
|
+
autoSubfolderIndex?: boolean | undefined;
|
|
2380
|
+
crawlLinks?: boolean | undefined;
|
|
2381
|
+
retryCount?: number | undefined;
|
|
2382
|
+
retryDelay?: number | undefined;
|
|
2383
|
+
onSuccess?: ((args_0: {
|
|
2384
|
+
page: {
|
|
2385
|
+
path: string;
|
|
2386
|
+
sitemap?: {
|
|
2387
|
+
lastmod?: string | Date | undefined;
|
|
2388
|
+
exclude?: boolean | undefined;
|
|
2389
|
+
priority?: number | undefined;
|
|
2390
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2391
|
+
alternateRefs?: {
|
|
2392
|
+
href: string;
|
|
2393
|
+
hreflang: string;
|
|
2394
|
+
}[] | undefined;
|
|
2395
|
+
images?: {
|
|
2396
|
+
loc: string;
|
|
2397
|
+
caption?: string | undefined;
|
|
2398
|
+
title?: string | undefined;
|
|
2399
|
+
}[] | undefined;
|
|
2400
|
+
news?: {
|
|
2401
|
+
title: string;
|
|
2402
|
+
publication: {
|
|
2403
|
+
name: string;
|
|
2404
|
+
language: string;
|
|
2405
|
+
};
|
|
2406
|
+
publicationDate: string | Date;
|
|
2407
|
+
} | undefined;
|
|
2408
|
+
} | undefined;
|
|
2409
|
+
fromCrawl?: boolean | undefined;
|
|
2410
|
+
};
|
|
2411
|
+
html: string;
|
|
2412
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
2413
|
+
} | undefined;
|
|
2414
|
+
enabled?: boolean | undefined;
|
|
2415
|
+
maskPath?: string | undefined;
|
|
2416
|
+
autoRedirect?: boolean | undefined;
|
|
2417
|
+
}>>;
|
|
1937
2418
|
root: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1938
2419
|
target: z.ZodOptional<z.ZodType<import('nitropack/presets').PresetNameInput | undefined, z.ZodTypeDef, import('nitropack/presets').PresetNameInput | undefined>>;
|
|
1939
2420
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1987,6 +2468,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1987
2468
|
path: string;
|
|
1988
2469
|
prerender?: {
|
|
1989
2470
|
enabled?: boolean | undefined;
|
|
2471
|
+
outputPath?: string | undefined;
|
|
1990
2472
|
autoSubfolderIndex?: boolean | undefined;
|
|
1991
2473
|
crawlLinks?: boolean | undefined;
|
|
1992
2474
|
retryCount?: number | undefined;
|
|
@@ -2053,6 +2535,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2053
2535
|
path: string;
|
|
2054
2536
|
prerender?: {
|
|
2055
2537
|
enabled?: boolean | undefined;
|
|
2538
|
+
outputPath?: string | undefined;
|
|
2056
2539
|
autoSubfolderIndex?: boolean | undefined;
|
|
2057
2540
|
crawlLinks?: boolean | undefined;
|
|
2058
2541
|
retryCount?: number | undefined;
|
|
@@ -2118,6 +2601,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2118
2601
|
failOnError?: boolean | undefined;
|
|
2119
2602
|
} & {
|
|
2120
2603
|
enabled?: boolean | undefined;
|
|
2604
|
+
outputPath?: string | undefined;
|
|
2121
2605
|
autoSubfolderIndex?: boolean | undefined;
|
|
2122
2606
|
crawlLinks?: boolean | undefined;
|
|
2123
2607
|
retryCount?: number | undefined;
|
|
@@ -2156,6 +2640,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2156
2640
|
sitemap?: {
|
|
2157
2641
|
host?: string | undefined;
|
|
2158
2642
|
enabled?: boolean | undefined;
|
|
2643
|
+
outputPath?: string | undefined;
|
|
2159
2644
|
autoSubfolderIndex?: boolean | undefined;
|
|
2160
2645
|
crawlLinks?: boolean | undefined;
|
|
2161
2646
|
retryCount?: number | undefined;
|
|
@@ -2191,6 +2676,49 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2191
2676
|
html: string;
|
|
2192
2677
|
}, ...args: unknown[]) => any) | undefined;
|
|
2193
2678
|
} | undefined;
|
|
2679
|
+
shell?: {
|
|
2680
|
+
prerender: {
|
|
2681
|
+
enabled: boolean;
|
|
2682
|
+
outputPath: string;
|
|
2683
|
+
autoSubfolderIndex?: boolean | undefined;
|
|
2684
|
+
crawlLinks: boolean;
|
|
2685
|
+
retryCount: number;
|
|
2686
|
+
retryDelay?: number | undefined;
|
|
2687
|
+
onSuccess?: ((args_0: {
|
|
2688
|
+
page: {
|
|
2689
|
+
path: string;
|
|
2690
|
+
sitemap?: {
|
|
2691
|
+
lastmod?: string | Date | undefined;
|
|
2692
|
+
exclude?: boolean | undefined;
|
|
2693
|
+
priority?: number | undefined;
|
|
2694
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2695
|
+
alternateRefs?: {
|
|
2696
|
+
href: string;
|
|
2697
|
+
hreflang: string;
|
|
2698
|
+
}[] | undefined;
|
|
2699
|
+
images?: {
|
|
2700
|
+
loc: string;
|
|
2701
|
+
caption?: string | undefined;
|
|
2702
|
+
title?: string | undefined;
|
|
2703
|
+
}[] | undefined;
|
|
2704
|
+
news?: {
|
|
2705
|
+
title: string;
|
|
2706
|
+
publication: {
|
|
2707
|
+
name: string;
|
|
2708
|
+
language: string;
|
|
2709
|
+
};
|
|
2710
|
+
publicationDate: string | Date;
|
|
2711
|
+
} | undefined;
|
|
2712
|
+
} | undefined;
|
|
2713
|
+
fromCrawl?: boolean | undefined;
|
|
2714
|
+
};
|
|
2715
|
+
html: string;
|
|
2716
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
2717
|
+
};
|
|
2718
|
+
enabled: boolean;
|
|
2719
|
+
maskPath: string;
|
|
2720
|
+
autoRedirect: boolean;
|
|
2721
|
+
} | undefined;
|
|
2194
2722
|
}, {
|
|
2195
2723
|
client?: {
|
|
2196
2724
|
entry?: string | undefined;
|
|
@@ -2206,6 +2734,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2206
2734
|
path: string;
|
|
2207
2735
|
prerender?: {
|
|
2208
2736
|
enabled?: boolean | undefined;
|
|
2737
|
+
outputPath?: string | undefined;
|
|
2209
2738
|
autoSubfolderIndex?: boolean | undefined;
|
|
2210
2739
|
crawlLinks?: boolean | undefined;
|
|
2211
2740
|
retryCount?: number | undefined;
|
|
@@ -2271,6 +2800,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2271
2800
|
failOnError?: boolean | undefined;
|
|
2272
2801
|
} & {
|
|
2273
2802
|
enabled?: boolean | undefined;
|
|
2803
|
+
outputPath?: string | undefined;
|
|
2274
2804
|
autoSubfolderIndex?: boolean | undefined;
|
|
2275
2805
|
crawlLinks?: boolean | undefined;
|
|
2276
2806
|
retryCount?: number | undefined;
|
|
@@ -2347,6 +2877,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2347
2877
|
sitemap?: {
|
|
2348
2878
|
host?: string | undefined;
|
|
2349
2879
|
enabled?: boolean | undefined;
|
|
2880
|
+
outputPath?: string | undefined;
|
|
2350
2881
|
autoSubfolderIndex?: boolean | undefined;
|
|
2351
2882
|
crawlLinks?: boolean | undefined;
|
|
2352
2883
|
retryCount?: number | undefined;
|
|
@@ -2386,6 +2917,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2386
2917
|
path: string;
|
|
2387
2918
|
prerender?: {
|
|
2388
2919
|
enabled?: boolean | undefined;
|
|
2920
|
+
outputPath?: string | undefined;
|
|
2389
2921
|
autoSubfolderIndex?: boolean | undefined;
|
|
2390
2922
|
crawlLinks?: boolean | undefined;
|
|
2391
2923
|
retryCount?: number | undefined;
|
|
@@ -2446,6 +2978,49 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2446
2978
|
} | undefined;
|
|
2447
2979
|
fromCrawl?: boolean | undefined;
|
|
2448
2980
|
})[] | undefined;
|
|
2981
|
+
shell?: {
|
|
2982
|
+
prerender?: {
|
|
2983
|
+
enabled?: boolean | undefined;
|
|
2984
|
+
outputPath?: string | undefined;
|
|
2985
|
+
autoSubfolderIndex?: boolean | undefined;
|
|
2986
|
+
crawlLinks?: boolean | undefined;
|
|
2987
|
+
retryCount?: number | undefined;
|
|
2988
|
+
retryDelay?: number | undefined;
|
|
2989
|
+
onSuccess?: ((args_0: {
|
|
2990
|
+
page: {
|
|
2991
|
+
path: string;
|
|
2992
|
+
sitemap?: {
|
|
2993
|
+
lastmod?: string | Date | undefined;
|
|
2994
|
+
exclude?: boolean | undefined;
|
|
2995
|
+
priority?: number | undefined;
|
|
2996
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2997
|
+
alternateRefs?: {
|
|
2998
|
+
href: string;
|
|
2999
|
+
hreflang: string;
|
|
3000
|
+
}[] | undefined;
|
|
3001
|
+
images?: {
|
|
3002
|
+
loc: string;
|
|
3003
|
+
caption?: string | undefined;
|
|
3004
|
+
title?: string | undefined;
|
|
3005
|
+
}[] | undefined;
|
|
3006
|
+
news?: {
|
|
3007
|
+
title: string;
|
|
3008
|
+
publication: {
|
|
3009
|
+
name: string;
|
|
3010
|
+
language: string;
|
|
3011
|
+
};
|
|
3012
|
+
publicationDate: string | Date;
|
|
3013
|
+
} | undefined;
|
|
3014
|
+
} | undefined;
|
|
3015
|
+
fromCrawl?: boolean | undefined;
|
|
3016
|
+
};
|
|
3017
|
+
html: string;
|
|
3018
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
3019
|
+
} | undefined;
|
|
3020
|
+
enabled?: boolean | undefined;
|
|
3021
|
+
maskPath?: string | undefined;
|
|
3022
|
+
autoRedirect?: boolean | undefined;
|
|
3023
|
+
} | undefined;
|
|
2449
3024
|
}>>>;
|
|
2450
3025
|
export type TanStackStartInputConfig = z.input<typeof TanStackStartOptionsSchema>;
|
|
2451
3026
|
export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig): {
|
|
@@ -2501,6 +3076,7 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
2501
3076
|
path: string;
|
|
2502
3077
|
prerender?: {
|
|
2503
3078
|
enabled?: boolean | undefined;
|
|
3079
|
+
outputPath?: string | undefined;
|
|
2504
3080
|
autoSubfolderIndex?: boolean | undefined;
|
|
2505
3081
|
crawlLinks?: boolean | undefined;
|
|
2506
3082
|
retryCount?: number | undefined;
|
|
@@ -2567,6 +3143,7 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
2567
3143
|
path: string;
|
|
2568
3144
|
prerender?: {
|
|
2569
3145
|
enabled?: boolean | undefined;
|
|
3146
|
+
outputPath?: string | undefined;
|
|
2570
3147
|
autoSubfolderIndex?: boolean | undefined;
|
|
2571
3148
|
crawlLinks?: boolean | undefined;
|
|
2572
3149
|
retryCount?: number | undefined;
|
|
@@ -2632,6 +3209,7 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
2632
3209
|
failOnError?: boolean | undefined;
|
|
2633
3210
|
} & {
|
|
2634
3211
|
enabled?: boolean | undefined;
|
|
3212
|
+
outputPath?: string | undefined;
|
|
2635
3213
|
autoSubfolderIndex?: boolean | undefined;
|
|
2636
3214
|
crawlLinks?: boolean | undefined;
|
|
2637
3215
|
retryCount?: number | undefined;
|
|
@@ -2670,6 +3248,7 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
2670
3248
|
sitemap?: {
|
|
2671
3249
|
host?: string | undefined;
|
|
2672
3250
|
enabled?: boolean | undefined;
|
|
3251
|
+
outputPath?: string | undefined;
|
|
2673
3252
|
autoSubfolderIndex?: boolean | undefined;
|
|
2674
3253
|
crawlLinks?: boolean | undefined;
|
|
2675
3254
|
retryCount?: number | undefined;
|
|
@@ -2705,6 +3284,49 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
2705
3284
|
html: string;
|
|
2706
3285
|
}, ...args: unknown[]) => any) | undefined;
|
|
2707
3286
|
} | undefined;
|
|
3287
|
+
shell?: {
|
|
3288
|
+
prerender: {
|
|
3289
|
+
enabled: boolean;
|
|
3290
|
+
outputPath: string;
|
|
3291
|
+
autoSubfolderIndex?: boolean | undefined;
|
|
3292
|
+
crawlLinks: boolean;
|
|
3293
|
+
retryCount: number;
|
|
3294
|
+
retryDelay?: number | undefined;
|
|
3295
|
+
onSuccess?: ((args_0: {
|
|
3296
|
+
page: {
|
|
3297
|
+
path: string;
|
|
3298
|
+
sitemap?: {
|
|
3299
|
+
lastmod?: string | Date | undefined;
|
|
3300
|
+
exclude?: boolean | undefined;
|
|
3301
|
+
priority?: number | undefined;
|
|
3302
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
3303
|
+
alternateRefs?: {
|
|
3304
|
+
href: string;
|
|
3305
|
+
hreflang: string;
|
|
3306
|
+
}[] | undefined;
|
|
3307
|
+
images?: {
|
|
3308
|
+
loc: string;
|
|
3309
|
+
caption?: string | undefined;
|
|
3310
|
+
title?: string | undefined;
|
|
3311
|
+
}[] | undefined;
|
|
3312
|
+
news?: {
|
|
3313
|
+
title: string;
|
|
3314
|
+
publication: {
|
|
3315
|
+
name: string;
|
|
3316
|
+
language: string;
|
|
3317
|
+
};
|
|
3318
|
+
publicationDate: string | Date;
|
|
3319
|
+
} | undefined;
|
|
3320
|
+
} | undefined;
|
|
3321
|
+
fromCrawl?: boolean | undefined;
|
|
3322
|
+
};
|
|
3323
|
+
html: string;
|
|
3324
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
3325
|
+
};
|
|
3326
|
+
enabled: boolean;
|
|
3327
|
+
maskPath: string;
|
|
3328
|
+
autoRedirect: boolean;
|
|
3329
|
+
} | undefined;
|
|
2708
3330
|
};
|
|
2709
3331
|
export type TanStackStartOutputConfig = ReturnType<typeof getTanStackStartOptions>;
|
|
2710
3332
|
export declare const clientDistDir = ".tanstack-start/build/client-dist";
|