astro 5.5.6 → 5.6.1

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.
Files changed (52) hide show
  1. package/client.d.ts +1 -16
  2. package/dist/actions/plugins.js +1 -1
  3. package/dist/assets/runtime.js +5 -29
  4. package/dist/assets/utils/svg.d.ts +1 -4
  5. package/dist/assets/utils/svg.js +2 -2
  6. package/dist/assets/vite-plugin-assets.js +31 -30
  7. package/dist/container/index.js +1 -1
  8. package/dist/content/content-layer.js +3 -3
  9. package/dist/content/vite-plugin-content-virtual-mod.js +7 -9
  10. package/dist/core/app/index.d.ts +15 -0
  11. package/dist/core/app/index.js +27 -7
  12. package/dist/core/build/index.js +2 -2
  13. package/dist/core/build/plugins/plugin-component-entry.js +3 -1
  14. package/dist/core/build/plugins/plugin-manifest.js +1 -1
  15. package/dist/core/build/plugins/plugin-pages.js +1 -1
  16. package/dist/core/build/plugins/plugin-prerender.js +3 -0
  17. package/dist/core/build/plugins/plugin-renderers.js +3 -3
  18. package/dist/core/build/plugins/plugin-ssr.js +2 -2
  19. package/dist/core/config/index.d.ts +1 -1
  20. package/dist/core/config/schemas/base.d.ts +1110 -0
  21. package/dist/core/config/{schema.js → schemas/base.js} +9 -254
  22. package/dist/core/config/schemas/index.d.ts +3 -0
  23. package/dist/core/config/schemas/index.js +9 -0
  24. package/dist/core/config/schemas/refined.d.ts +3 -0
  25. package/dist/core/config/schemas/refined.js +141 -0
  26. package/dist/core/config/schemas/relative.d.ts +1462 -0
  27. package/dist/core/config/schemas/relative.js +93 -0
  28. package/dist/core/config/validate.d.ts +6 -0
  29. package/dist/core/config/validate.js +9 -3
  30. package/dist/core/constants.js +1 -1
  31. package/dist/core/dev/dev.js +1 -1
  32. package/dist/core/messages.js +2 -2
  33. package/dist/core/middleware/vite-plugin.js +3 -3
  34. package/dist/core/server-islands/vite-plugin-server-islands.js +1 -1
  35. package/dist/core/session.d.ts +8 -0
  36. package/dist/core/session.js +13 -0
  37. package/dist/env/vite-plugin-env.js +3 -3
  38. package/dist/events/session.js +1 -1
  39. package/dist/integrations/hooks.d.ts +4 -4
  40. package/dist/integrations/hooks.js +276 -280
  41. package/dist/manifest/virtual-module.js +2 -2
  42. package/dist/prefetch/index.d.ts +8 -0
  43. package/dist/prefetch/index.js +6 -4
  44. package/dist/prefetch/vite-plugin-prefetch.js +1 -1
  45. package/dist/toolbar/vite-plugin-dev-toolbar.js +41 -39
  46. package/dist/transitions/vite-plugin-transitions.js +22 -18
  47. package/dist/types/public/config.d.ts +3 -25
  48. package/dist/vite-plugin-load-fallback/index.js +4 -2
  49. package/dist/vite-plugin-scripts/index.js +9 -3
  50. package/dist/vite-plugin-ssr-manifest/index.js +4 -3
  51. package/package.json +4 -4
  52. package/dist/core/config/schema.d.ts +0 -3402
@@ -0,0 +1,1462 @@
1
+ import type { OutgoingHttpHeaders } from 'node:http';
2
+ import { z } from 'zod';
3
+ export declare function createRelativeSchema(cmd: string, fileProtocolRoot: string): z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
4
+ root: z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodString>>, URL, string | undefined>;
5
+ srcDir: z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodString>>, URL, string | undefined>;
6
+ publicDir: z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodString>>, URL, string | undefined>;
7
+ outDir: z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodString>>, URL, string | undefined>;
8
+ cacheDir: z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodString>>, URL, string | undefined>;
9
+ site: z.ZodOptional<z.ZodString>;
10
+ compressHTML: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
11
+ base: z.ZodDefault<z.ZodOptional<z.ZodString>>;
12
+ trailingSlash: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"always">, z.ZodLiteral<"never">, z.ZodLiteral<"ignore">]>>>;
13
+ output: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"static">, z.ZodLiteral<"server">]>>>;
14
+ scopedStyleStrategy: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"where">, z.ZodLiteral<"class">, z.ZodLiteral<"attribute">]>>>;
15
+ adapter: z.ZodOptional<z.ZodObject<{
16
+ name: z.ZodString;
17
+ hooks: z.ZodDefault<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
18
+ }, "strip", z.ZodTypeAny, {
19
+ name: string;
20
+ hooks: {} & {
21
+ [k: string]: unknown;
22
+ };
23
+ }, {
24
+ name: string;
25
+ hooks?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
26
+ }>>;
27
+ integrations: z.ZodEffects<z.ZodDefault<z.ZodArray<z.ZodObject<{
28
+ name: z.ZodString;
29
+ hooks: z.ZodDefault<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>;
30
+ }, "strip", z.ZodTypeAny, {
31
+ name: string;
32
+ hooks: {} & {
33
+ [k: string]: unknown;
34
+ };
35
+ }, {
36
+ name: string;
37
+ hooks?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
38
+ }>, "many">>, {
39
+ name: string;
40
+ hooks: {} & {
41
+ [k: string]: unknown;
42
+ };
43
+ }[], unknown>;
44
+ build: z.ZodDefault<z.ZodObject<{
45
+ format: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"file">, z.ZodLiteral<"directory">, z.ZodLiteral<"preserve">]>>>;
46
+ client: z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodString>>, URL, string | undefined>;
47
+ server: z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodString>>, URL, string | undefined>;
48
+ assets: z.ZodDefault<z.ZodOptional<z.ZodString>>;
49
+ assetsPrefix: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodOptional<z.ZodIntersection<z.ZodObject<{
50
+ fallback: z.ZodString;
51
+ }, "strip", z.ZodTypeAny, {
52
+ fallback: string;
53
+ }, {
54
+ fallback: string;
55
+ }>, z.ZodRecord<z.ZodString, z.ZodString>>>]>;
56
+ serverEntry: z.ZodDefault<z.ZodOptional<z.ZodString>>;
57
+ redirects: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
58
+ inlineStylesheets: z.ZodDefault<z.ZodOptional<z.ZodEnum<["always", "auto", "never"]>>>;
59
+ concurrency: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
60
+ }, "strip", z.ZodTypeAny, {
61
+ client: URL;
62
+ format: "file" | "directory" | "preserve";
63
+ server: URL;
64
+ assets: string;
65
+ serverEntry: string;
66
+ redirects: boolean;
67
+ inlineStylesheets: "never" | "always" | "auto";
68
+ concurrency: number;
69
+ assetsPrefix?: string | ({
70
+ fallback: string;
71
+ } & Record<string, string>) | undefined;
72
+ }, {
73
+ client?: string | undefined;
74
+ format?: "file" | "directory" | "preserve" | undefined;
75
+ server?: string | undefined;
76
+ assets?: string | undefined;
77
+ serverEntry?: string | undefined;
78
+ redirects?: boolean | undefined;
79
+ inlineStylesheets?: "never" | "always" | "auto" | undefined;
80
+ concurrency?: number | undefined;
81
+ assetsPrefix?: string | ({
82
+ fallback: string;
83
+ } & Record<string, string>) | undefined;
84
+ }>>;
85
+ server: z.ZodEffects<z.ZodDefault<z.ZodObject<{
86
+ open: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
87
+ host: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
88
+ port: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
89
+ headers: z.ZodOptional<z.ZodType<OutgoingHttpHeaders, z.ZodTypeDef, OutgoingHttpHeaders>>;
90
+ allowedHosts: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodLiteral<true>]>>>;
91
+ }, "strip", z.ZodTypeAny, {
92
+ host: string | boolean;
93
+ port: number;
94
+ allowedHosts: true | string[];
95
+ open: string | boolean;
96
+ headers?: OutgoingHttpHeaders | undefined;
97
+ }, {
98
+ headers?: OutgoingHttpHeaders | undefined;
99
+ host?: string | boolean | undefined;
100
+ port?: number | undefined;
101
+ allowedHosts?: true | string[] | undefined;
102
+ open?: string | boolean | undefined;
103
+ }>>, {
104
+ host: string | boolean;
105
+ port: number;
106
+ allowedHosts: true | string[];
107
+ open: string | boolean;
108
+ headers?: OutgoingHttpHeaders | undefined;
109
+ }, unknown>;
110
+ redirects: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
111
+ status: z.ZodUnion<[z.ZodLiteral<300>, z.ZodLiteral<301>, z.ZodLiteral<302>, z.ZodLiteral<303>, z.ZodLiteral<304>, z.ZodLiteral<307>, z.ZodLiteral<308>]>;
112
+ destination: z.ZodString;
113
+ }, "strip", z.ZodTypeAny, {
114
+ status: 300 | 301 | 302 | 303 | 304 | 307 | 308;
115
+ destination: string;
116
+ }, {
117
+ status: 300 | 301 | 302 | 303 | 304 | 307 | 308;
118
+ destination: string;
119
+ }>]>>>;
120
+ prefetch: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
121
+ prefetchAll: z.ZodOptional<z.ZodBoolean>;
122
+ defaultStrategy: z.ZodOptional<z.ZodEnum<["tap", "hover", "viewport", "load"]>>;
123
+ }, "strip", z.ZodTypeAny, {
124
+ prefetchAll?: boolean | undefined;
125
+ defaultStrategy?: "load" | "tap" | "hover" | "viewport" | undefined;
126
+ }, {
127
+ prefetchAll?: boolean | undefined;
128
+ defaultStrategy?: "load" | "tap" | "hover" | "viewport" | undefined;
129
+ }>]>>;
130
+ image: z.ZodDefault<z.ZodObject<{
131
+ endpoint: z.ZodDefault<z.ZodObject<{
132
+ route: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"/_image">, z.ZodString]>>;
133
+ entrypoint: z.ZodOptional<z.ZodString>;
134
+ }, "strip", z.ZodTypeAny, {
135
+ route: string;
136
+ entrypoint?: string | undefined;
137
+ }, {
138
+ route?: string | undefined;
139
+ entrypoint?: string | undefined;
140
+ }>>;
141
+ service: z.ZodDefault<z.ZodObject<{
142
+ entrypoint: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"astro/assets/services/sharp">, z.ZodString]>>;
143
+ config: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>;
144
+ }, "strip", z.ZodTypeAny, {
145
+ entrypoint: string;
146
+ config: Record<string, any>;
147
+ }, {
148
+ entrypoint?: string | undefined;
149
+ config?: Record<string, any> | undefined;
150
+ }>>;
151
+ domains: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
152
+ remotePatterns: z.ZodDefault<z.ZodArray<z.ZodObject<{
153
+ protocol: z.ZodOptional<z.ZodString>;
154
+ hostname: z.ZodOptional<z.ZodString>;
155
+ port: z.ZodOptional<z.ZodString>;
156
+ pathname: z.ZodOptional<z.ZodString>;
157
+ }, "strip", z.ZodTypeAny, {
158
+ port?: string | undefined;
159
+ protocol?: string | undefined;
160
+ hostname?: string | undefined;
161
+ pathname?: string | undefined;
162
+ }, {
163
+ port?: string | undefined;
164
+ protocol?: string | undefined;
165
+ hostname?: string | undefined;
166
+ pathname?: string | undefined;
167
+ }>, "many">>;
168
+ experimentalLayout: z.ZodOptional<z.ZodEnum<["responsive", "fixed", "full-width", "none"]>>;
169
+ experimentalObjectFit: z.ZodOptional<z.ZodString>;
170
+ experimentalObjectPosition: z.ZodOptional<z.ZodString>;
171
+ experimentalBreakpoints: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
172
+ }, "strip", z.ZodTypeAny, {
173
+ endpoint: {
174
+ route: string;
175
+ entrypoint?: string | undefined;
176
+ };
177
+ service: {
178
+ entrypoint: string;
179
+ config: Record<string, any>;
180
+ };
181
+ domains: string[];
182
+ remotePatterns: {
183
+ port?: string | undefined;
184
+ protocol?: string | undefined;
185
+ hostname?: string | undefined;
186
+ pathname?: string | undefined;
187
+ }[];
188
+ experimentalLayout?: "fixed" | "none" | "responsive" | "full-width" | undefined;
189
+ experimentalObjectFit?: string | undefined;
190
+ experimentalObjectPosition?: string | undefined;
191
+ experimentalBreakpoints?: number[] | undefined;
192
+ }, {
193
+ endpoint?: {
194
+ route?: string | undefined;
195
+ entrypoint?: string | undefined;
196
+ } | undefined;
197
+ service?: {
198
+ entrypoint?: string | undefined;
199
+ config?: Record<string, any> | undefined;
200
+ } | undefined;
201
+ domains?: string[] | undefined;
202
+ remotePatterns?: {
203
+ port?: string | undefined;
204
+ protocol?: string | undefined;
205
+ hostname?: string | undefined;
206
+ pathname?: string | undefined;
207
+ }[] | undefined;
208
+ experimentalLayout?: "fixed" | "none" | "responsive" | "full-width" | undefined;
209
+ experimentalObjectFit?: string | undefined;
210
+ experimentalObjectPosition?: string | undefined;
211
+ experimentalBreakpoints?: number[] | undefined;
212
+ }>>;
213
+ devToolbar: z.ZodDefault<z.ZodObject<{
214
+ enabled: z.ZodDefault<z.ZodBoolean>;
215
+ }, "strip", z.ZodTypeAny, {
216
+ enabled: boolean;
217
+ }, {
218
+ enabled?: boolean | undefined;
219
+ }>>;
220
+ markdown: z.ZodDefault<z.ZodObject<{
221
+ syntaxHighlight: z.ZodDefault<z.ZodUnion<[z.ZodDefault<z.ZodObject<{
222
+ type: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"shiki">, z.ZodLiteral<"prism">]>>;
223
+ excludeLangs: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
224
+ }, "strip", z.ZodTypeAny, {
225
+ type: "shiki" | "prism";
226
+ excludeLangs: string[];
227
+ }, {
228
+ type?: "shiki" | "prism" | undefined;
229
+ excludeLangs?: string[] | undefined;
230
+ }>>, z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"shiki">, z.ZodLiteral<"prism">]>>, z.ZodLiteral<false>]>>;
231
+ shikiConfig: z.ZodDefault<z.ZodObject<{
232
+ langs: z.ZodDefault<z.ZodEffects<z.ZodArray<z.ZodType<import("shiki").LanguageRegistration & import("./base.js").ComplexifyUnionObj, z.ZodTypeDef, import("shiki").LanguageRegistration & import("./base.js").ComplexifyUnionObj>, "many">, (import("shiki").LanguageRegistration & import("./base.js").ComplexifyUnionObj)[], (import("shiki").LanguageRegistration & import("./base.js").ComplexifyUnionObj)[]>>;
233
+ langAlias: z.ZodDefault<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
234
+ theme: z.ZodDefault<z.ZodUnion<[z.ZodEnum<[import("shiki").BundledTheme, ...import("shiki").BundledTheme[]]>, z.ZodType<NonNullable<import("@astrojs/markdown-remark").ThemePresets | import("shiki").ThemeRegistration | import("shiki").ThemeRegistrationRaw | undefined> & import("./base.js").ComplexifyUnionObj, z.ZodTypeDef, NonNullable<import("@astrojs/markdown-remark").ThemePresets | import("shiki").ThemeRegistration | import("shiki").ThemeRegistrationRaw | undefined> & import("./base.js").ComplexifyUnionObj>]>>;
235
+ themes: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEnum<[import("shiki").BundledTheme, ...import("shiki").BundledTheme[]]>, z.ZodType<NonNullable<import("@astrojs/markdown-remark").ThemePresets | import("shiki").ThemeRegistration | import("shiki").ThemeRegistrationRaw | undefined> & import("./base.js").ComplexifyUnionObj, z.ZodTypeDef, NonNullable<import("@astrojs/markdown-remark").ThemePresets | import("shiki").ThemeRegistration | import("shiki").ThemeRegistrationRaw | undefined> & import("./base.js").ComplexifyUnionObj>]>>>;
236
+ defaultColor: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"light">, z.ZodLiteral<"dark">, z.ZodString, z.ZodLiteral<false>]>>;
237
+ wrap: z.ZodDefault<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
238
+ transformers: z.ZodDefault<z.ZodArray<z.ZodType<import("shiki").ShikiTransformer & import("./base.js").ComplexifyUnionObj, z.ZodTypeDef, import("shiki").ShikiTransformer & import("./base.js").ComplexifyUnionObj>, "many">>;
239
+ }, "strip", z.ZodTypeAny, {
240
+ langs: (import("shiki").LanguageRegistration & import("./base.js").ComplexifyUnionObj)[];
241
+ theme: import("shiki").BundledTheme | (NonNullable<import("@astrojs/markdown-remark").ThemePresets | import("shiki").ThemeRegistration | import("shiki").ThemeRegistrationRaw | undefined> & import("./base.js").ComplexifyUnionObj);
242
+ themes: Record<string, import("shiki").BundledTheme | (NonNullable<import("@astrojs/markdown-remark").ThemePresets | import("shiki").ThemeRegistration | import("shiki").ThemeRegistrationRaw | undefined> & import("./base.js").ComplexifyUnionObj)>;
243
+ langAlias: Record<string, string>;
244
+ wrap: boolean | null;
245
+ transformers: (import("shiki").ShikiTransformer & import("./base.js").ComplexifyUnionObj)[];
246
+ defaultColor?: string | false | undefined;
247
+ }, {
248
+ langs?: (import("shiki").LanguageRegistration & import("./base.js").ComplexifyUnionObj)[] | undefined;
249
+ theme?: import("shiki").BundledTheme | (NonNullable<import("@astrojs/markdown-remark").ThemePresets | import("shiki").ThemeRegistration | import("shiki").ThemeRegistrationRaw | undefined> & import("./base.js").ComplexifyUnionObj) | undefined;
250
+ themes?: Record<string, import("shiki").BundledTheme | (NonNullable<import("@astrojs/markdown-remark").ThemePresets | import("shiki").ThemeRegistration | import("shiki").ThemeRegistrationRaw | undefined> & import("./base.js").ComplexifyUnionObj)> | undefined;
251
+ langAlias?: Record<string, string> | undefined;
252
+ defaultColor?: string | false | undefined;
253
+ wrap?: boolean | null | undefined;
254
+ transformers?: (import("shiki").ShikiTransformer & import("./base.js").ComplexifyUnionObj)[] | undefined;
255
+ }>>;
256
+ remarkPlugins: z.ZodDefault<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodAny], null>, z.ZodType<import("@astrojs/markdown-remark").RemarkPlugin & import("./base.js").ComplexifyUnionObj, z.ZodTypeDef, import("@astrojs/markdown-remark").RemarkPlugin & import("./base.js").ComplexifyUnionObj>, z.ZodTuple<[z.ZodType<import("@astrojs/markdown-remark").RemarkPlugin & import("./base.js").ComplexifyUnionObj, z.ZodTypeDef, import("@astrojs/markdown-remark").RemarkPlugin & import("./base.js").ComplexifyUnionObj>, z.ZodAny], null>]>, "many">>;
257
+ rehypePlugins: z.ZodDefault<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodAny], null>, z.ZodType<import("@astrojs/markdown-remark").RehypePlugin & import("./base.js").ComplexifyUnionObj, z.ZodTypeDef, import("@astrojs/markdown-remark").RehypePlugin & import("./base.js").ComplexifyUnionObj>, z.ZodTuple<[z.ZodType<import("@astrojs/markdown-remark").RehypePlugin & import("./base.js").ComplexifyUnionObj, z.ZodTypeDef, import("@astrojs/markdown-remark").RehypePlugin & import("./base.js").ComplexifyUnionObj>, z.ZodAny], null>]>, "many">>;
258
+ remarkRehype: z.ZodDefault<z.ZodType<import("./base.js").RemarkRehype, z.ZodTypeDef, import("./base.js").RemarkRehype>>;
259
+ gfm: z.ZodDefault<z.ZodBoolean>;
260
+ smartypants: z.ZodDefault<z.ZodBoolean>;
261
+ }, "strip", z.ZodTypeAny, {
262
+ syntaxHighlight: false | "shiki" | "prism" | {
263
+ type: "shiki" | "prism";
264
+ excludeLangs: string[];
265
+ };
266
+ shikiConfig: {
267
+ langs: (import("shiki").LanguageRegistration & import("./base.js").ComplexifyUnionObj)[];
268
+ theme: import("shiki").BundledTheme | (NonNullable<import("@astrojs/markdown-remark").ThemePresets | import("shiki").ThemeRegistration | import("shiki").ThemeRegistrationRaw | undefined> & import("./base.js").ComplexifyUnionObj);
269
+ themes: Record<string, import("shiki").BundledTheme | (NonNullable<import("@astrojs/markdown-remark").ThemePresets | import("shiki").ThemeRegistration | import("shiki").ThemeRegistrationRaw | undefined> & import("./base.js").ComplexifyUnionObj)>;
270
+ langAlias: Record<string, string>;
271
+ wrap: boolean | null;
272
+ transformers: (import("shiki").ShikiTransformer & import("./base.js").ComplexifyUnionObj)[];
273
+ defaultColor?: string | false | undefined;
274
+ };
275
+ remarkPlugins: (string | [string, any] | (import("@astrojs/markdown-remark").RemarkPlugin & import("./base.js").ComplexifyUnionObj) | [import("@astrojs/markdown-remark").RemarkPlugin & import("./base.js").ComplexifyUnionObj, any])[];
276
+ rehypePlugins: (string | [string, any] | (import("@astrojs/markdown-remark").RehypePlugin & import("./base.js").ComplexifyUnionObj) | [import("@astrojs/markdown-remark").RehypePlugin & import("./base.js").ComplexifyUnionObj, any])[];
277
+ remarkRehype: import("./base.js").RemarkRehype;
278
+ gfm: boolean;
279
+ smartypants: boolean;
280
+ }, {
281
+ syntaxHighlight?: false | "shiki" | "prism" | {
282
+ type?: "shiki" | "prism" | undefined;
283
+ excludeLangs?: string[] | undefined;
284
+ } | undefined;
285
+ shikiConfig?: {
286
+ langs?: (import("shiki").LanguageRegistration & import("./base.js").ComplexifyUnionObj)[] | undefined;
287
+ theme?: import("shiki").BundledTheme | (NonNullable<import("@astrojs/markdown-remark").ThemePresets | import("shiki").ThemeRegistration | import("shiki").ThemeRegistrationRaw | undefined> & import("./base.js").ComplexifyUnionObj) | undefined;
288
+ themes?: Record<string, import("shiki").BundledTheme | (NonNullable<import("@astrojs/markdown-remark").ThemePresets | import("shiki").ThemeRegistration | import("shiki").ThemeRegistrationRaw | undefined> & import("./base.js").ComplexifyUnionObj)> | undefined;
289
+ langAlias?: Record<string, string> | undefined;
290
+ defaultColor?: string | false | undefined;
291
+ wrap?: boolean | null | undefined;
292
+ transformers?: (import("shiki").ShikiTransformer & import("./base.js").ComplexifyUnionObj)[] | undefined;
293
+ } | undefined;
294
+ remarkPlugins?: (string | [string, any] | (import("@astrojs/markdown-remark").RemarkPlugin & import("./base.js").ComplexifyUnionObj) | [import("@astrojs/markdown-remark").RemarkPlugin & import("./base.js").ComplexifyUnionObj, any])[] | undefined;
295
+ rehypePlugins?: (string | [string, any] | (import("@astrojs/markdown-remark").RehypePlugin & import("./base.js").ComplexifyUnionObj) | [import("@astrojs/markdown-remark").RehypePlugin & import("./base.js").ComplexifyUnionObj, any])[] | undefined;
296
+ remarkRehype?: import("./base.js").RemarkRehype | undefined;
297
+ gfm?: boolean | undefined;
298
+ smartypants?: boolean | undefined;
299
+ }>>;
300
+ vite: z.ZodDefault<z.ZodType<import("../../../types/public/config.js").ViteUserConfig, z.ZodTypeDef, import("../../../types/public/config.js").ViteUserConfig>>;
301
+ i18n: z.ZodOptional<z.ZodOptional<z.ZodObject<{
302
+ defaultLocale: z.ZodString;
303
+ locales: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
304
+ path: z.ZodString;
305
+ codes: z.ZodArray<z.ZodString, "atleastone">;
306
+ }, "strip", z.ZodTypeAny, {
307
+ path: string;
308
+ codes: [string, ...string[]];
309
+ }, {
310
+ path: string;
311
+ codes: [string, ...string[]];
312
+ }>]>, "many">;
313
+ domains: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
314
+ fallback: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
315
+ routing: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"manual">, z.ZodObject<{
316
+ prefixDefaultLocale: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
317
+ redirectToDefaultLocale: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
318
+ fallbackType: z.ZodDefault<z.ZodOptional<z.ZodEnum<["redirect", "rewrite"]>>>;
319
+ }, "strip", z.ZodTypeAny, {
320
+ prefixDefaultLocale: boolean;
321
+ redirectToDefaultLocale: boolean;
322
+ fallbackType: "redirect" | "rewrite";
323
+ }, {
324
+ prefixDefaultLocale?: boolean | undefined;
325
+ redirectToDefaultLocale?: boolean | undefined;
326
+ fallbackType?: "redirect" | "rewrite" | undefined;
327
+ }>]>>>;
328
+ }, "strip", z.ZodTypeAny, {
329
+ defaultLocale: string;
330
+ locales: (string | {
331
+ path: string;
332
+ codes: [string, ...string[]];
333
+ })[];
334
+ routing: "manual" | {
335
+ prefixDefaultLocale: boolean;
336
+ redirectToDefaultLocale: boolean;
337
+ fallbackType: "redirect" | "rewrite";
338
+ };
339
+ fallback?: Record<string, string> | undefined;
340
+ domains?: Record<string, string> | undefined;
341
+ }, {
342
+ defaultLocale: string;
343
+ locales: (string | {
344
+ path: string;
345
+ codes: [string, ...string[]];
346
+ })[];
347
+ fallback?: Record<string, string> | undefined;
348
+ domains?: Record<string, string> | undefined;
349
+ routing?: "manual" | {
350
+ prefixDefaultLocale?: boolean | undefined;
351
+ redirectToDefaultLocale?: boolean | undefined;
352
+ fallbackType?: "redirect" | "rewrite" | undefined;
353
+ } | undefined;
354
+ }>>>;
355
+ security: z.ZodDefault<z.ZodOptional<z.ZodObject<{
356
+ checkOrigin: z.ZodDefault<z.ZodBoolean>;
357
+ }, "strip", z.ZodTypeAny, {
358
+ checkOrigin: boolean;
359
+ }, {
360
+ checkOrigin?: boolean | undefined;
361
+ }>>>;
362
+ env: z.ZodDefault<z.ZodOptional<z.ZodObject<{
363
+ schema: z.ZodDefault<z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodIntersection<z.ZodEffects<z.ZodType<{
364
+ context: "client";
365
+ access: "public";
366
+ } | {
367
+ context: "server";
368
+ access: "public";
369
+ } | {
370
+ context: "server";
371
+ access: "secret";
372
+ }, z.ZodTypeDef, {
373
+ context: "client";
374
+ access: "public";
375
+ } | {
376
+ context: "server";
377
+ access: "public";
378
+ } | {
379
+ context: "server";
380
+ access: "secret";
381
+ }>, {
382
+ context: "client";
383
+ access: "public";
384
+ } | {
385
+ context: "server";
386
+ access: "public";
387
+ } | {
388
+ context: "server";
389
+ access: "secret";
390
+ }, {
391
+ context: "client";
392
+ access: "public";
393
+ } | {
394
+ context: "server";
395
+ access: "public";
396
+ } | {
397
+ context: "server";
398
+ access: "secret";
399
+ }>, z.ZodUnion<[z.ZodObject<{
400
+ type: z.ZodLiteral<"string">;
401
+ optional: z.ZodOptional<z.ZodBoolean>;
402
+ default: z.ZodOptional<z.ZodString>;
403
+ max: z.ZodOptional<z.ZodNumber>;
404
+ min: z.ZodOptional<z.ZodNumber>;
405
+ length: z.ZodOptional<z.ZodNumber>;
406
+ url: z.ZodOptional<z.ZodBoolean>;
407
+ includes: z.ZodOptional<z.ZodString>;
408
+ startsWith: z.ZodOptional<z.ZodString>;
409
+ endsWith: z.ZodOptional<z.ZodString>;
410
+ }, "strip", z.ZodTypeAny, {
411
+ type: "string";
412
+ length?: number | undefined;
413
+ includes?: string | undefined;
414
+ endsWith?: string | undefined;
415
+ startsWith?: string | undefined;
416
+ default?: string | undefined;
417
+ url?: boolean | undefined;
418
+ optional?: boolean | undefined;
419
+ max?: number | undefined;
420
+ min?: number | undefined;
421
+ }, {
422
+ type: "string";
423
+ length?: number | undefined;
424
+ includes?: string | undefined;
425
+ endsWith?: string | undefined;
426
+ startsWith?: string | undefined;
427
+ default?: string | undefined;
428
+ url?: boolean | undefined;
429
+ optional?: boolean | undefined;
430
+ max?: number | undefined;
431
+ min?: number | undefined;
432
+ }>, z.ZodObject<{
433
+ type: z.ZodLiteral<"number">;
434
+ optional: z.ZodOptional<z.ZodBoolean>;
435
+ default: z.ZodOptional<z.ZodNumber>;
436
+ gt: z.ZodOptional<z.ZodNumber>;
437
+ min: z.ZodOptional<z.ZodNumber>;
438
+ lt: z.ZodOptional<z.ZodNumber>;
439
+ max: z.ZodOptional<z.ZodNumber>;
440
+ int: z.ZodOptional<z.ZodBoolean>;
441
+ }, "strip", z.ZodTypeAny, {
442
+ type: "number";
443
+ default?: number | undefined;
444
+ optional?: boolean | undefined;
445
+ max?: number | undefined;
446
+ min?: number | undefined;
447
+ gt?: number | undefined;
448
+ lt?: number | undefined;
449
+ int?: boolean | undefined;
450
+ }, {
451
+ type: "number";
452
+ default?: number | undefined;
453
+ optional?: boolean | undefined;
454
+ max?: number | undefined;
455
+ min?: number | undefined;
456
+ gt?: number | undefined;
457
+ lt?: number | undefined;
458
+ int?: boolean | undefined;
459
+ }>, z.ZodObject<{
460
+ type: z.ZodLiteral<"boolean">;
461
+ optional: z.ZodOptional<z.ZodBoolean>;
462
+ default: z.ZodOptional<z.ZodBoolean>;
463
+ }, "strip", z.ZodTypeAny, {
464
+ type: "boolean";
465
+ default?: boolean | undefined;
466
+ optional?: boolean | undefined;
467
+ }, {
468
+ type: "boolean";
469
+ default?: boolean | undefined;
470
+ optional?: boolean | undefined;
471
+ }>, z.ZodEffects<z.ZodObject<{
472
+ type: z.ZodLiteral<"enum">;
473
+ values: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
474
+ optional: z.ZodOptional<z.ZodBoolean>;
475
+ default: z.ZodOptional<z.ZodString>;
476
+ }, "strip", z.ZodTypeAny, {
477
+ values: string[];
478
+ type: "enum";
479
+ default?: string | undefined;
480
+ optional?: boolean | undefined;
481
+ }, {
482
+ values: string[];
483
+ type: "enum";
484
+ default?: string | undefined;
485
+ optional?: boolean | undefined;
486
+ }>, {
487
+ values: string[];
488
+ type: "enum";
489
+ default?: string | undefined;
490
+ optional?: boolean | undefined;
491
+ }, {
492
+ values: string[];
493
+ type: "enum";
494
+ default?: string | undefined;
495
+ optional?: boolean | undefined;
496
+ }>]>>>>>;
497
+ validateSecrets: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
498
+ }, "strict", z.ZodTypeAny, {
499
+ validateSecrets: boolean;
500
+ schema: Record<string, ({
501
+ context: "client";
502
+ access: "public";
503
+ } | {
504
+ context: "server";
505
+ access: "public";
506
+ } | {
507
+ context: "server";
508
+ access: "secret";
509
+ }) & ({
510
+ type: "string";
511
+ length?: number | undefined;
512
+ includes?: string | undefined;
513
+ endsWith?: string | undefined;
514
+ startsWith?: string | undefined;
515
+ default?: string | undefined;
516
+ url?: boolean | undefined;
517
+ optional?: boolean | undefined;
518
+ max?: number | undefined;
519
+ min?: number | undefined;
520
+ } | {
521
+ type: "number";
522
+ default?: number | undefined;
523
+ optional?: boolean | undefined;
524
+ max?: number | undefined;
525
+ min?: number | undefined;
526
+ gt?: number | undefined;
527
+ lt?: number | undefined;
528
+ int?: boolean | undefined;
529
+ } | {
530
+ type: "boolean";
531
+ default?: boolean | undefined;
532
+ optional?: boolean | undefined;
533
+ } | {
534
+ values: string[];
535
+ type: "enum";
536
+ default?: string | undefined;
537
+ optional?: boolean | undefined;
538
+ })>;
539
+ }, {
540
+ validateSecrets?: boolean | undefined;
541
+ schema?: Record<string, ({
542
+ context: "client";
543
+ access: "public";
544
+ } | {
545
+ context: "server";
546
+ access: "public";
547
+ } | {
548
+ context: "server";
549
+ access: "secret";
550
+ }) & ({
551
+ type: "string";
552
+ length?: number | undefined;
553
+ includes?: string | undefined;
554
+ endsWith?: string | undefined;
555
+ startsWith?: string | undefined;
556
+ default?: string | undefined;
557
+ url?: boolean | undefined;
558
+ optional?: boolean | undefined;
559
+ max?: number | undefined;
560
+ min?: number | undefined;
561
+ } | {
562
+ type: "number";
563
+ default?: number | undefined;
564
+ optional?: boolean | undefined;
565
+ max?: number | undefined;
566
+ min?: number | undefined;
567
+ gt?: number | undefined;
568
+ lt?: number | undefined;
569
+ int?: boolean | undefined;
570
+ } | {
571
+ type: "boolean";
572
+ default?: boolean | undefined;
573
+ optional?: boolean | undefined;
574
+ } | {
575
+ values: string[];
576
+ type: "enum";
577
+ default?: string | undefined;
578
+ optional?: boolean | undefined;
579
+ })> | undefined;
580
+ }>>>;
581
+ session: z.ZodOptional<z.ZodObject<{
582
+ driver: z.ZodString;
583
+ options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
584
+ cookie: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
585
+ name: z.ZodOptional<z.ZodString>;
586
+ domain: z.ZodOptional<z.ZodString>;
587
+ path: z.ZodOptional<z.ZodString>;
588
+ maxAge: z.ZodOptional<z.ZodNumber>;
589
+ sameSite: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["strict", "lax", "none"]>, z.ZodBoolean]>>;
590
+ secure: z.ZodOptional<z.ZodBoolean>;
591
+ }, "strip", z.ZodTypeAny, {
592
+ domain?: string | undefined;
593
+ path?: string | undefined;
594
+ maxAge?: number | undefined;
595
+ sameSite?: boolean | "lax" | "strict" | "none" | undefined;
596
+ secure?: boolean | undefined;
597
+ name?: string | undefined;
598
+ }, {
599
+ domain?: string | undefined;
600
+ path?: string | undefined;
601
+ maxAge?: number | undefined;
602
+ sameSite?: boolean | "lax" | "strict" | "none" | undefined;
603
+ secure?: boolean | undefined;
604
+ name?: string | undefined;
605
+ }>, z.ZodString]>, {
606
+ domain?: string | undefined;
607
+ path?: string | undefined;
608
+ maxAge?: number | undefined;
609
+ sameSite?: boolean | "lax" | "strict" | "none" | undefined;
610
+ secure?: boolean | undefined;
611
+ name?: string | undefined;
612
+ }, string | {
613
+ domain?: string | undefined;
614
+ path?: string | undefined;
615
+ maxAge?: number | undefined;
616
+ sameSite?: boolean | "lax" | "strict" | "none" | undefined;
617
+ secure?: boolean | undefined;
618
+ name?: string | undefined;
619
+ }>>;
620
+ ttl: z.ZodOptional<z.ZodNumber>;
621
+ }, "strip", z.ZodTypeAny, {
622
+ driver: string;
623
+ cookie?: {
624
+ domain?: string | undefined;
625
+ path?: string | undefined;
626
+ maxAge?: number | undefined;
627
+ sameSite?: boolean | "lax" | "strict" | "none" | undefined;
628
+ secure?: boolean | undefined;
629
+ name?: string | undefined;
630
+ } | undefined;
631
+ options?: Record<string, any> | undefined;
632
+ ttl?: number | undefined;
633
+ }, {
634
+ driver: string;
635
+ cookie?: string | {
636
+ domain?: string | undefined;
637
+ path?: string | undefined;
638
+ maxAge?: number | undefined;
639
+ sameSite?: boolean | "lax" | "strict" | "none" | undefined;
640
+ secure?: boolean | undefined;
641
+ name?: string | undefined;
642
+ } | undefined;
643
+ options?: Record<string, any> | undefined;
644
+ ttl?: number | undefined;
645
+ }>>;
646
+ experimental: z.ZodDefault<z.ZodObject<{
647
+ clientPrerender: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
648
+ contentIntellisense: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
649
+ responsiveImages: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
650
+ session: z.ZodOptional<z.ZodBoolean>;
651
+ svg: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
652
+ serializeConfig: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
653
+ headingIdCompat: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
654
+ preserveScriptOrder: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
655
+ }, "strict", z.ZodTypeAny, {
656
+ clientPrerender: boolean;
657
+ contentIntellisense: boolean;
658
+ responsiveImages: boolean;
659
+ svg: boolean;
660
+ serializeConfig: boolean;
661
+ headingIdCompat: boolean;
662
+ preserveScriptOrder: boolean;
663
+ session?: boolean | undefined;
664
+ }, {
665
+ clientPrerender?: boolean | undefined;
666
+ contentIntellisense?: boolean | undefined;
667
+ responsiveImages?: boolean | undefined;
668
+ svg?: boolean | undefined;
669
+ serializeConfig?: boolean | undefined;
670
+ session?: boolean | undefined;
671
+ headingIdCompat?: boolean | undefined;
672
+ preserveScriptOrder?: boolean | undefined;
673
+ }>>;
674
+ legacy: z.ZodDefault<z.ZodObject<{
675
+ collections: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
676
+ }, "strip", z.ZodTypeAny, {
677
+ collections: boolean;
678
+ }, {
679
+ collections?: boolean | undefined;
680
+ }>>;
681
+ }, {
682
+ root: z.ZodEffects<z.ZodDefault<z.ZodString>, import("url").URL, string | undefined>;
683
+ srcDir: z.ZodEffects<z.ZodDefault<z.ZodString>, import("url").URL, string | undefined>;
684
+ compressHTML: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
685
+ publicDir: z.ZodEffects<z.ZodDefault<z.ZodString>, import("url").URL, string | undefined>;
686
+ outDir: z.ZodEffects<z.ZodDefault<z.ZodString>, import("url").URL, string | undefined>;
687
+ cacheDir: z.ZodEffects<z.ZodDefault<z.ZodString>, import("url").URL, string | undefined>;
688
+ build: z.ZodDefault<z.ZodOptional<z.ZodObject<{
689
+ format: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"file">, z.ZodLiteral<"directory">, z.ZodLiteral<"preserve">]>>>;
690
+ client: z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodString>>, import("url").URL, string | undefined>;
691
+ server: z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodString>>, import("url").URL, string | undefined>;
692
+ assets: z.ZodDefault<z.ZodOptional<z.ZodString>>;
693
+ assetsPrefix: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodOptional<z.ZodIntersection<z.ZodObject<{
694
+ fallback: z.ZodString;
695
+ }, "strip", z.ZodTypeAny, {
696
+ fallback: string;
697
+ }, {
698
+ fallback: string;
699
+ }>, z.ZodRecord<z.ZodString, z.ZodString>>>]>;
700
+ serverEntry: z.ZodDefault<z.ZodOptional<z.ZodString>>;
701
+ redirects: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
702
+ inlineStylesheets: z.ZodDefault<z.ZodOptional<z.ZodEnum<["always", "auto", "never"]>>>;
703
+ concurrency: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
704
+ }, "strip", z.ZodTypeAny, {
705
+ client: import("url").URL;
706
+ format: "file" | "directory" | "preserve";
707
+ server: import("url").URL;
708
+ assets: string;
709
+ serverEntry: string;
710
+ redirects: boolean;
711
+ inlineStylesheets: "never" | "always" | "auto";
712
+ concurrency: number;
713
+ assetsPrefix?: string | ({
714
+ fallback: string;
715
+ } & Record<string, string>) | undefined;
716
+ }, {
717
+ client?: string | undefined;
718
+ format?: "file" | "directory" | "preserve" | undefined;
719
+ server?: string | undefined;
720
+ assets?: string | undefined;
721
+ serverEntry?: string | undefined;
722
+ redirects?: boolean | undefined;
723
+ inlineStylesheets?: "never" | "always" | "auto" | undefined;
724
+ concurrency?: number | undefined;
725
+ assetsPrefix?: string | ({
726
+ fallback: string;
727
+ } & Record<string, string>) | undefined;
728
+ }>>>;
729
+ server: z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodObject<{
730
+ open: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
731
+ host: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
732
+ port: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
733
+ headers: z.ZodOptional<z.ZodType<OutgoingHttpHeaders, z.ZodTypeDef, OutgoingHttpHeaders>>;
734
+ streaming: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
735
+ allowedHosts: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodLiteral<true>]>>>;
736
+ }, "strip", z.ZodTypeAny, {
737
+ host: string | boolean;
738
+ port: number;
739
+ allowedHosts: true | string[];
740
+ open: string | boolean;
741
+ streaming: boolean;
742
+ headers?: OutgoingHttpHeaders | undefined;
743
+ }, {
744
+ headers?: OutgoingHttpHeaders | undefined;
745
+ host?: string | boolean | undefined;
746
+ port?: number | undefined;
747
+ allowedHosts?: true | string[] | undefined;
748
+ open?: string | boolean | undefined;
749
+ streaming?: boolean | undefined;
750
+ }>>>, {
751
+ host: string | boolean;
752
+ port: number;
753
+ allowedHosts: true | string[];
754
+ open: string | boolean;
755
+ streaming: boolean;
756
+ headers?: OutgoingHttpHeaders | undefined;
757
+ }, unknown>;
758
+ }>, "strip", z.ZodTypeAny, {
759
+ trailingSlash: "never" | "ignore" | "always";
760
+ server: {
761
+ host: string | boolean;
762
+ port: number;
763
+ allowedHosts: true | string[];
764
+ open: string | boolean;
765
+ streaming: boolean;
766
+ headers?: OutgoingHttpHeaders | undefined;
767
+ };
768
+ redirects: Record<string, string | {
769
+ status: 300 | 301 | 302 | 303 | 304 | 307 | 308;
770
+ destination: string;
771
+ }>;
772
+ build: {
773
+ client: import("url").URL;
774
+ format: "file" | "directory" | "preserve";
775
+ server: import("url").URL;
776
+ assets: string;
777
+ serverEntry: string;
778
+ redirects: boolean;
779
+ inlineStylesheets: "never" | "always" | "auto";
780
+ concurrency: number;
781
+ assetsPrefix?: string | ({
782
+ fallback: string;
783
+ } & Record<string, string>) | undefined;
784
+ };
785
+ root: import("url").URL;
786
+ srcDir: import("url").URL;
787
+ publicDir: import("url").URL;
788
+ outDir: import("url").URL;
789
+ cacheDir: import("url").URL;
790
+ compressHTML: boolean;
791
+ base: string;
792
+ output: "server" | "static";
793
+ scopedStyleStrategy: "where" | "class" | "attribute";
794
+ integrations: {
795
+ name: string;
796
+ hooks: {} & {
797
+ [k: string]: unknown;
798
+ };
799
+ }[];
800
+ image: {
801
+ endpoint: {
802
+ route: string;
803
+ entrypoint?: string | undefined;
804
+ };
805
+ service: {
806
+ entrypoint: string;
807
+ config: Record<string, any>;
808
+ };
809
+ domains: string[];
810
+ remotePatterns: {
811
+ port?: string | undefined;
812
+ protocol?: string | undefined;
813
+ hostname?: string | undefined;
814
+ pathname?: string | undefined;
815
+ }[];
816
+ experimentalLayout?: "fixed" | "none" | "responsive" | "full-width" | undefined;
817
+ experimentalObjectFit?: string | undefined;
818
+ experimentalObjectPosition?: string | undefined;
819
+ experimentalBreakpoints?: number[] | undefined;
820
+ };
821
+ devToolbar: {
822
+ enabled: boolean;
823
+ };
824
+ markdown: {
825
+ syntaxHighlight: false | "shiki" | "prism" | {
826
+ type: "shiki" | "prism";
827
+ excludeLangs: string[];
828
+ };
829
+ shikiConfig: {
830
+ langs: (import("shiki").LanguageRegistration & import("./base.js").ComplexifyUnionObj)[];
831
+ theme: import("shiki").BundledTheme | (NonNullable<import("@astrojs/markdown-remark").ThemePresets | import("shiki").ThemeRegistration | import("shiki").ThemeRegistrationRaw | undefined> & import("./base.js").ComplexifyUnionObj);
832
+ themes: Record<string, import("shiki").BundledTheme | (NonNullable<import("@astrojs/markdown-remark").ThemePresets | import("shiki").ThemeRegistration | import("shiki").ThemeRegistrationRaw | undefined> & import("./base.js").ComplexifyUnionObj)>;
833
+ langAlias: Record<string, string>;
834
+ wrap: boolean | null;
835
+ transformers: (import("shiki").ShikiTransformer & import("./base.js").ComplexifyUnionObj)[];
836
+ defaultColor?: string | false | undefined;
837
+ };
838
+ remarkPlugins: (string | [string, any] | (import("@astrojs/markdown-remark").RemarkPlugin & import("./base.js").ComplexifyUnionObj) | [import("@astrojs/markdown-remark").RemarkPlugin & import("./base.js").ComplexifyUnionObj, any])[];
839
+ rehypePlugins: (string | [string, any] | (import("@astrojs/markdown-remark").RehypePlugin & import("./base.js").ComplexifyUnionObj) | [import("@astrojs/markdown-remark").RehypePlugin & import("./base.js").ComplexifyUnionObj, any])[];
840
+ remarkRehype: import("./base.js").RemarkRehype;
841
+ gfm: boolean;
842
+ smartypants: boolean;
843
+ };
844
+ vite: import("../../../types/public/config.js").ViteUserConfig;
845
+ security: {
846
+ checkOrigin: boolean;
847
+ };
848
+ env: {
849
+ validateSecrets: boolean;
850
+ schema: Record<string, ({
851
+ context: "client";
852
+ access: "public";
853
+ } | {
854
+ context: "server";
855
+ access: "public";
856
+ } | {
857
+ context: "server";
858
+ access: "secret";
859
+ }) & ({
860
+ type: "string";
861
+ length?: number | undefined;
862
+ includes?: string | undefined;
863
+ endsWith?: string | undefined;
864
+ startsWith?: string | undefined;
865
+ default?: string | undefined;
866
+ url?: boolean | undefined;
867
+ optional?: boolean | undefined;
868
+ max?: number | undefined;
869
+ min?: number | undefined;
870
+ } | {
871
+ type: "number";
872
+ default?: number | undefined;
873
+ optional?: boolean | undefined;
874
+ max?: number | undefined;
875
+ min?: number | undefined;
876
+ gt?: number | undefined;
877
+ lt?: number | undefined;
878
+ int?: boolean | undefined;
879
+ } | {
880
+ type: "boolean";
881
+ default?: boolean | undefined;
882
+ optional?: boolean | undefined;
883
+ } | {
884
+ values: string[];
885
+ type: "enum";
886
+ default?: string | undefined;
887
+ optional?: boolean | undefined;
888
+ })>;
889
+ };
890
+ experimental: {
891
+ clientPrerender: boolean;
892
+ contentIntellisense: boolean;
893
+ responsiveImages: boolean;
894
+ svg: boolean;
895
+ serializeConfig: boolean;
896
+ headingIdCompat: boolean;
897
+ preserveScriptOrder: boolean;
898
+ session?: boolean | undefined;
899
+ };
900
+ legacy: {
901
+ collections: boolean;
902
+ };
903
+ session?: {
904
+ driver: string;
905
+ cookie?: {
906
+ domain?: string | undefined;
907
+ path?: string | undefined;
908
+ maxAge?: number | undefined;
909
+ sameSite?: boolean | "lax" | "strict" | "none" | undefined;
910
+ secure?: boolean | undefined;
911
+ name?: string | undefined;
912
+ } | undefined;
913
+ options?: Record<string, any> | undefined;
914
+ ttl?: number | undefined;
915
+ } | undefined;
916
+ site?: string | undefined;
917
+ adapter?: {
918
+ name: string;
919
+ hooks: {} & {
920
+ [k: string]: unknown;
921
+ };
922
+ } | undefined;
923
+ prefetch?: boolean | {
924
+ prefetchAll?: boolean | undefined;
925
+ defaultStrategy?: "load" | "tap" | "hover" | "viewport" | undefined;
926
+ } | undefined;
927
+ i18n?: {
928
+ defaultLocale: string;
929
+ locales: (string | {
930
+ path: string;
931
+ codes: [string, ...string[]];
932
+ })[];
933
+ routing: "manual" | {
934
+ prefixDefaultLocale: boolean;
935
+ redirectToDefaultLocale: boolean;
936
+ fallbackType: "redirect" | "rewrite";
937
+ };
938
+ fallback?: Record<string, string> | undefined;
939
+ domains?: Record<string, string> | undefined;
940
+ } | undefined;
941
+ }, {
942
+ trailingSlash?: "never" | "ignore" | "always" | undefined;
943
+ server?: unknown;
944
+ redirects?: Record<string, string | {
945
+ status: 300 | 301 | 302 | 303 | 304 | 307 | 308;
946
+ destination: string;
947
+ }> | undefined;
948
+ session?: {
949
+ driver: string;
950
+ cookie?: string | {
951
+ domain?: string | undefined;
952
+ path?: string | undefined;
953
+ maxAge?: number | undefined;
954
+ sameSite?: boolean | "lax" | "strict" | "none" | undefined;
955
+ secure?: boolean | undefined;
956
+ name?: string | undefined;
957
+ } | undefined;
958
+ options?: Record<string, any> | undefined;
959
+ ttl?: number | undefined;
960
+ } | undefined;
961
+ build?: {
962
+ client?: string | undefined;
963
+ format?: "file" | "directory" | "preserve" | undefined;
964
+ server?: string | undefined;
965
+ assets?: string | undefined;
966
+ serverEntry?: string | undefined;
967
+ redirects?: boolean | undefined;
968
+ inlineStylesheets?: "never" | "always" | "auto" | undefined;
969
+ concurrency?: number | undefined;
970
+ assetsPrefix?: string | ({
971
+ fallback: string;
972
+ } & Record<string, string>) | undefined;
973
+ } | undefined;
974
+ root?: string | undefined;
975
+ srcDir?: string | undefined;
976
+ publicDir?: string | undefined;
977
+ outDir?: string | undefined;
978
+ cacheDir?: string | undefined;
979
+ site?: string | undefined;
980
+ compressHTML?: boolean | undefined;
981
+ base?: string | undefined;
982
+ output?: "server" | "static" | undefined;
983
+ scopedStyleStrategy?: "where" | "class" | "attribute" | undefined;
984
+ adapter?: {
985
+ name: string;
986
+ hooks?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
987
+ } | undefined;
988
+ integrations?: unknown;
989
+ prefetch?: boolean | {
990
+ prefetchAll?: boolean | undefined;
991
+ defaultStrategy?: "load" | "tap" | "hover" | "viewport" | undefined;
992
+ } | undefined;
993
+ image?: {
994
+ endpoint?: {
995
+ route?: string | undefined;
996
+ entrypoint?: string | undefined;
997
+ } | undefined;
998
+ service?: {
999
+ entrypoint?: string | undefined;
1000
+ config?: Record<string, any> | undefined;
1001
+ } | undefined;
1002
+ domains?: string[] | undefined;
1003
+ remotePatterns?: {
1004
+ port?: string | undefined;
1005
+ protocol?: string | undefined;
1006
+ hostname?: string | undefined;
1007
+ pathname?: string | undefined;
1008
+ }[] | undefined;
1009
+ experimentalLayout?: "fixed" | "none" | "responsive" | "full-width" | undefined;
1010
+ experimentalObjectFit?: string | undefined;
1011
+ experimentalObjectPosition?: string | undefined;
1012
+ experimentalBreakpoints?: number[] | undefined;
1013
+ } | undefined;
1014
+ devToolbar?: {
1015
+ enabled?: boolean | undefined;
1016
+ } | undefined;
1017
+ markdown?: {
1018
+ syntaxHighlight?: false | "shiki" | "prism" | {
1019
+ type?: "shiki" | "prism" | undefined;
1020
+ excludeLangs?: string[] | undefined;
1021
+ } | undefined;
1022
+ shikiConfig?: {
1023
+ langs?: (import("shiki").LanguageRegistration & import("./base.js").ComplexifyUnionObj)[] | undefined;
1024
+ theme?: import("shiki").BundledTheme | (NonNullable<import("@astrojs/markdown-remark").ThemePresets | import("shiki").ThemeRegistration | import("shiki").ThemeRegistrationRaw | undefined> & import("./base.js").ComplexifyUnionObj) | undefined;
1025
+ themes?: Record<string, import("shiki").BundledTheme | (NonNullable<import("@astrojs/markdown-remark").ThemePresets | import("shiki").ThemeRegistration | import("shiki").ThemeRegistrationRaw | undefined> & import("./base.js").ComplexifyUnionObj)> | undefined;
1026
+ langAlias?: Record<string, string> | undefined;
1027
+ defaultColor?: string | false | undefined;
1028
+ wrap?: boolean | null | undefined;
1029
+ transformers?: (import("shiki").ShikiTransformer & import("./base.js").ComplexifyUnionObj)[] | undefined;
1030
+ } | undefined;
1031
+ remarkPlugins?: (string | [string, any] | (import("@astrojs/markdown-remark").RemarkPlugin & import("./base.js").ComplexifyUnionObj) | [import("@astrojs/markdown-remark").RemarkPlugin & import("./base.js").ComplexifyUnionObj, any])[] | undefined;
1032
+ rehypePlugins?: (string | [string, any] | (import("@astrojs/markdown-remark").RehypePlugin & import("./base.js").ComplexifyUnionObj) | [import("@astrojs/markdown-remark").RehypePlugin & import("./base.js").ComplexifyUnionObj, any])[] | undefined;
1033
+ remarkRehype?: import("./base.js").RemarkRehype | undefined;
1034
+ gfm?: boolean | undefined;
1035
+ smartypants?: boolean | undefined;
1036
+ } | undefined;
1037
+ vite?: import("../../../types/public/config.js").ViteUserConfig | undefined;
1038
+ i18n?: {
1039
+ defaultLocale: string;
1040
+ locales: (string | {
1041
+ path: string;
1042
+ codes: [string, ...string[]];
1043
+ })[];
1044
+ fallback?: Record<string, string> | undefined;
1045
+ domains?: Record<string, string> | undefined;
1046
+ routing?: "manual" | {
1047
+ prefixDefaultLocale?: boolean | undefined;
1048
+ redirectToDefaultLocale?: boolean | undefined;
1049
+ fallbackType?: "redirect" | "rewrite" | undefined;
1050
+ } | undefined;
1051
+ } | undefined;
1052
+ security?: {
1053
+ checkOrigin?: boolean | undefined;
1054
+ } | undefined;
1055
+ env?: {
1056
+ validateSecrets?: boolean | undefined;
1057
+ schema?: Record<string, ({
1058
+ context: "client";
1059
+ access: "public";
1060
+ } | {
1061
+ context: "server";
1062
+ access: "public";
1063
+ } | {
1064
+ context: "server";
1065
+ access: "secret";
1066
+ }) & ({
1067
+ type: "string";
1068
+ length?: number | undefined;
1069
+ includes?: string | undefined;
1070
+ endsWith?: string | undefined;
1071
+ startsWith?: string | undefined;
1072
+ default?: string | undefined;
1073
+ url?: boolean | undefined;
1074
+ optional?: boolean | undefined;
1075
+ max?: number | undefined;
1076
+ min?: number | undefined;
1077
+ } | {
1078
+ type: "number";
1079
+ default?: number | undefined;
1080
+ optional?: boolean | undefined;
1081
+ max?: number | undefined;
1082
+ min?: number | undefined;
1083
+ gt?: number | undefined;
1084
+ lt?: number | undefined;
1085
+ int?: boolean | undefined;
1086
+ } | {
1087
+ type: "boolean";
1088
+ default?: boolean | undefined;
1089
+ optional?: boolean | undefined;
1090
+ } | {
1091
+ values: string[];
1092
+ type: "enum";
1093
+ default?: string | undefined;
1094
+ optional?: boolean | undefined;
1095
+ })> | undefined;
1096
+ } | undefined;
1097
+ experimental?: {
1098
+ clientPrerender?: boolean | undefined;
1099
+ contentIntellisense?: boolean | undefined;
1100
+ responsiveImages?: boolean | undefined;
1101
+ svg?: boolean | undefined;
1102
+ serializeConfig?: boolean | undefined;
1103
+ session?: boolean | undefined;
1104
+ headingIdCompat?: boolean | undefined;
1105
+ preserveScriptOrder?: boolean | undefined;
1106
+ } | undefined;
1107
+ legacy?: {
1108
+ collections?: boolean | undefined;
1109
+ } | undefined;
1110
+ }>, {
1111
+ trailingSlash: "never" | "ignore" | "always";
1112
+ server: {
1113
+ host: string | boolean;
1114
+ port: number;
1115
+ allowedHosts: true | string[];
1116
+ open: string | boolean;
1117
+ streaming: boolean;
1118
+ headers?: OutgoingHttpHeaders | undefined;
1119
+ };
1120
+ redirects: Record<string, string | {
1121
+ status: 300 | 301 | 302 | 303 | 304 | 307 | 308;
1122
+ destination: string;
1123
+ }>;
1124
+ build: {
1125
+ client: import("url").URL;
1126
+ format: "file" | "directory" | "preserve";
1127
+ server: import("url").URL;
1128
+ assets: string;
1129
+ serverEntry: string;
1130
+ redirects: boolean;
1131
+ inlineStylesheets: "never" | "always" | "auto";
1132
+ concurrency: number;
1133
+ assetsPrefix?: string | ({
1134
+ fallback: string;
1135
+ } & Record<string, string>) | undefined;
1136
+ };
1137
+ root: import("url").URL;
1138
+ srcDir: import("url").URL;
1139
+ publicDir: import("url").URL;
1140
+ outDir: import("url").URL;
1141
+ cacheDir: import("url").URL;
1142
+ compressHTML: boolean;
1143
+ base: string;
1144
+ output: "server" | "static";
1145
+ scopedStyleStrategy: "where" | "class" | "attribute";
1146
+ integrations: {
1147
+ name: string;
1148
+ hooks: {} & {
1149
+ [k: string]: unknown;
1150
+ };
1151
+ }[];
1152
+ image: {
1153
+ endpoint: {
1154
+ route: string;
1155
+ entrypoint?: string | undefined;
1156
+ };
1157
+ service: {
1158
+ entrypoint: string;
1159
+ config: Record<string, any>;
1160
+ };
1161
+ domains: string[];
1162
+ remotePatterns: {
1163
+ port?: string | undefined;
1164
+ protocol?: string | undefined;
1165
+ hostname?: string | undefined;
1166
+ pathname?: string | undefined;
1167
+ }[];
1168
+ experimentalLayout?: "fixed" | "none" | "responsive" | "full-width" | undefined;
1169
+ experimentalObjectFit?: string | undefined;
1170
+ experimentalObjectPosition?: string | undefined;
1171
+ experimentalBreakpoints?: number[] | undefined;
1172
+ };
1173
+ devToolbar: {
1174
+ enabled: boolean;
1175
+ };
1176
+ markdown: {
1177
+ syntaxHighlight: false | "shiki" | "prism" | {
1178
+ type: "shiki" | "prism";
1179
+ excludeLangs: string[];
1180
+ };
1181
+ shikiConfig: {
1182
+ langs: (import("shiki").LanguageRegistration & import("./base.js").ComplexifyUnionObj)[];
1183
+ theme: import("shiki").BundledTheme | (NonNullable<import("@astrojs/markdown-remark").ThemePresets | import("shiki").ThemeRegistration | import("shiki").ThemeRegistrationRaw | undefined> & import("./base.js").ComplexifyUnionObj);
1184
+ themes: Record<string, import("shiki").BundledTheme | (NonNullable<import("@astrojs/markdown-remark").ThemePresets | import("shiki").ThemeRegistration | import("shiki").ThemeRegistrationRaw | undefined> & import("./base.js").ComplexifyUnionObj)>;
1185
+ langAlias: Record<string, string>;
1186
+ wrap: boolean | null;
1187
+ transformers: (import("shiki").ShikiTransformer & import("./base.js").ComplexifyUnionObj)[];
1188
+ defaultColor?: string | false | undefined;
1189
+ };
1190
+ remarkPlugins: (string | [string, any] | (import("@astrojs/markdown-remark").RemarkPlugin & import("./base.js").ComplexifyUnionObj) | [import("@astrojs/markdown-remark").RemarkPlugin & import("./base.js").ComplexifyUnionObj, any])[];
1191
+ rehypePlugins: (string | [string, any] | (import("@astrojs/markdown-remark").RehypePlugin & import("./base.js").ComplexifyUnionObj) | [import("@astrojs/markdown-remark").RehypePlugin & import("./base.js").ComplexifyUnionObj, any])[];
1192
+ remarkRehype: import("./base.js").RemarkRehype;
1193
+ gfm: boolean;
1194
+ smartypants: boolean;
1195
+ };
1196
+ vite: import("../../../types/public/config.js").ViteUserConfig;
1197
+ security: {
1198
+ checkOrigin: boolean;
1199
+ };
1200
+ env: {
1201
+ validateSecrets: boolean;
1202
+ schema: Record<string, ({
1203
+ context: "client";
1204
+ access: "public";
1205
+ } | {
1206
+ context: "server";
1207
+ access: "public";
1208
+ } | {
1209
+ context: "server";
1210
+ access: "secret";
1211
+ }) & ({
1212
+ type: "string";
1213
+ length?: number | undefined;
1214
+ includes?: string | undefined;
1215
+ endsWith?: string | undefined;
1216
+ startsWith?: string | undefined;
1217
+ default?: string | undefined;
1218
+ url?: boolean | undefined;
1219
+ optional?: boolean | undefined;
1220
+ max?: number | undefined;
1221
+ min?: number | undefined;
1222
+ } | {
1223
+ type: "number";
1224
+ default?: number | undefined;
1225
+ optional?: boolean | undefined;
1226
+ max?: number | undefined;
1227
+ min?: number | undefined;
1228
+ gt?: number | undefined;
1229
+ lt?: number | undefined;
1230
+ int?: boolean | undefined;
1231
+ } | {
1232
+ type: "boolean";
1233
+ default?: boolean | undefined;
1234
+ optional?: boolean | undefined;
1235
+ } | {
1236
+ values: string[];
1237
+ type: "enum";
1238
+ default?: string | undefined;
1239
+ optional?: boolean | undefined;
1240
+ })>;
1241
+ };
1242
+ experimental: {
1243
+ clientPrerender: boolean;
1244
+ contentIntellisense: boolean;
1245
+ responsiveImages: boolean;
1246
+ svg: boolean;
1247
+ serializeConfig: boolean;
1248
+ headingIdCompat: boolean;
1249
+ preserveScriptOrder: boolean;
1250
+ session?: boolean | undefined;
1251
+ };
1252
+ legacy: {
1253
+ collections: boolean;
1254
+ };
1255
+ session?: {
1256
+ driver: string;
1257
+ cookie?: {
1258
+ domain?: string | undefined;
1259
+ path?: string | undefined;
1260
+ maxAge?: number | undefined;
1261
+ sameSite?: boolean | "lax" | "strict" | "none" | undefined;
1262
+ secure?: boolean | undefined;
1263
+ name?: string | undefined;
1264
+ } | undefined;
1265
+ options?: Record<string, any> | undefined;
1266
+ ttl?: number | undefined;
1267
+ } | undefined;
1268
+ site?: string | undefined;
1269
+ adapter?: {
1270
+ name: string;
1271
+ hooks: {} & {
1272
+ [k: string]: unknown;
1273
+ };
1274
+ } | undefined;
1275
+ prefetch?: boolean | {
1276
+ prefetchAll?: boolean | undefined;
1277
+ defaultStrategy?: "load" | "tap" | "hover" | "viewport" | undefined;
1278
+ } | undefined;
1279
+ i18n?: {
1280
+ defaultLocale: string;
1281
+ locales: (string | {
1282
+ path: string;
1283
+ codes: [string, ...string[]];
1284
+ })[];
1285
+ routing: "manual" | {
1286
+ prefixDefaultLocale: boolean;
1287
+ redirectToDefaultLocale: boolean;
1288
+ fallbackType: "redirect" | "rewrite";
1289
+ };
1290
+ fallback?: Record<string, string> | undefined;
1291
+ domains?: Record<string, string> | undefined;
1292
+ } | undefined;
1293
+ }, {
1294
+ trailingSlash?: "never" | "ignore" | "always" | undefined;
1295
+ server?: unknown;
1296
+ redirects?: Record<string, string | {
1297
+ status: 300 | 301 | 302 | 303 | 304 | 307 | 308;
1298
+ destination: string;
1299
+ }> | undefined;
1300
+ session?: {
1301
+ driver: string;
1302
+ cookie?: string | {
1303
+ domain?: string | undefined;
1304
+ path?: string | undefined;
1305
+ maxAge?: number | undefined;
1306
+ sameSite?: boolean | "lax" | "strict" | "none" | undefined;
1307
+ secure?: boolean | undefined;
1308
+ name?: string | undefined;
1309
+ } | undefined;
1310
+ options?: Record<string, any> | undefined;
1311
+ ttl?: number | undefined;
1312
+ } | undefined;
1313
+ build?: {
1314
+ client?: string | undefined;
1315
+ format?: "file" | "directory" | "preserve" | undefined;
1316
+ server?: string | undefined;
1317
+ assets?: string | undefined;
1318
+ serverEntry?: string | undefined;
1319
+ redirects?: boolean | undefined;
1320
+ inlineStylesheets?: "never" | "always" | "auto" | undefined;
1321
+ concurrency?: number | undefined;
1322
+ assetsPrefix?: string | ({
1323
+ fallback: string;
1324
+ } & Record<string, string>) | undefined;
1325
+ } | undefined;
1326
+ root?: string | undefined;
1327
+ srcDir?: string | undefined;
1328
+ publicDir?: string | undefined;
1329
+ outDir?: string | undefined;
1330
+ cacheDir?: string | undefined;
1331
+ site?: string | undefined;
1332
+ compressHTML?: boolean | undefined;
1333
+ base?: string | undefined;
1334
+ output?: "server" | "static" | undefined;
1335
+ scopedStyleStrategy?: "where" | "class" | "attribute" | undefined;
1336
+ adapter?: {
1337
+ name: string;
1338
+ hooks?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
1339
+ } | undefined;
1340
+ integrations?: unknown;
1341
+ prefetch?: boolean | {
1342
+ prefetchAll?: boolean | undefined;
1343
+ defaultStrategy?: "load" | "tap" | "hover" | "viewport" | undefined;
1344
+ } | undefined;
1345
+ image?: {
1346
+ endpoint?: {
1347
+ route?: string | undefined;
1348
+ entrypoint?: string | undefined;
1349
+ } | undefined;
1350
+ service?: {
1351
+ entrypoint?: string | undefined;
1352
+ config?: Record<string, any> | undefined;
1353
+ } | undefined;
1354
+ domains?: string[] | undefined;
1355
+ remotePatterns?: {
1356
+ port?: string | undefined;
1357
+ protocol?: string | undefined;
1358
+ hostname?: string | undefined;
1359
+ pathname?: string | undefined;
1360
+ }[] | undefined;
1361
+ experimentalLayout?: "fixed" | "none" | "responsive" | "full-width" | undefined;
1362
+ experimentalObjectFit?: string | undefined;
1363
+ experimentalObjectPosition?: string | undefined;
1364
+ experimentalBreakpoints?: number[] | undefined;
1365
+ } | undefined;
1366
+ devToolbar?: {
1367
+ enabled?: boolean | undefined;
1368
+ } | undefined;
1369
+ markdown?: {
1370
+ syntaxHighlight?: false | "shiki" | "prism" | {
1371
+ type?: "shiki" | "prism" | undefined;
1372
+ excludeLangs?: string[] | undefined;
1373
+ } | undefined;
1374
+ shikiConfig?: {
1375
+ langs?: (import("shiki").LanguageRegistration & import("./base.js").ComplexifyUnionObj)[] | undefined;
1376
+ theme?: import("shiki").BundledTheme | (NonNullable<import("@astrojs/markdown-remark").ThemePresets | import("shiki").ThemeRegistration | import("shiki").ThemeRegistrationRaw | undefined> & import("./base.js").ComplexifyUnionObj) | undefined;
1377
+ themes?: Record<string, import("shiki").BundledTheme | (NonNullable<import("@astrojs/markdown-remark").ThemePresets | import("shiki").ThemeRegistration | import("shiki").ThemeRegistrationRaw | undefined> & import("./base.js").ComplexifyUnionObj)> | undefined;
1378
+ langAlias?: Record<string, string> | undefined;
1379
+ defaultColor?: string | false | undefined;
1380
+ wrap?: boolean | null | undefined;
1381
+ transformers?: (import("shiki").ShikiTransformer & import("./base.js").ComplexifyUnionObj)[] | undefined;
1382
+ } | undefined;
1383
+ remarkPlugins?: (string | [string, any] | (import("@astrojs/markdown-remark").RemarkPlugin & import("./base.js").ComplexifyUnionObj) | [import("@astrojs/markdown-remark").RemarkPlugin & import("./base.js").ComplexifyUnionObj, any])[] | undefined;
1384
+ rehypePlugins?: (string | [string, any] | (import("@astrojs/markdown-remark").RehypePlugin & import("./base.js").ComplexifyUnionObj) | [import("@astrojs/markdown-remark").RehypePlugin & import("./base.js").ComplexifyUnionObj, any])[] | undefined;
1385
+ remarkRehype?: import("./base.js").RemarkRehype | undefined;
1386
+ gfm?: boolean | undefined;
1387
+ smartypants?: boolean | undefined;
1388
+ } | undefined;
1389
+ vite?: import("../../../types/public/config.js").ViteUserConfig | undefined;
1390
+ i18n?: {
1391
+ defaultLocale: string;
1392
+ locales: (string | {
1393
+ path: string;
1394
+ codes: [string, ...string[]];
1395
+ })[];
1396
+ fallback?: Record<string, string> | undefined;
1397
+ domains?: Record<string, string> | undefined;
1398
+ routing?: "manual" | {
1399
+ prefixDefaultLocale?: boolean | undefined;
1400
+ redirectToDefaultLocale?: boolean | undefined;
1401
+ fallbackType?: "redirect" | "rewrite" | undefined;
1402
+ } | undefined;
1403
+ } | undefined;
1404
+ security?: {
1405
+ checkOrigin?: boolean | undefined;
1406
+ } | undefined;
1407
+ env?: {
1408
+ validateSecrets?: boolean | undefined;
1409
+ schema?: Record<string, ({
1410
+ context: "client";
1411
+ access: "public";
1412
+ } | {
1413
+ context: "server";
1414
+ access: "public";
1415
+ } | {
1416
+ context: "server";
1417
+ access: "secret";
1418
+ }) & ({
1419
+ type: "string";
1420
+ length?: number | undefined;
1421
+ includes?: string | undefined;
1422
+ endsWith?: string | undefined;
1423
+ startsWith?: string | undefined;
1424
+ default?: string | undefined;
1425
+ url?: boolean | undefined;
1426
+ optional?: boolean | undefined;
1427
+ max?: number | undefined;
1428
+ min?: number | undefined;
1429
+ } | {
1430
+ type: "number";
1431
+ default?: number | undefined;
1432
+ optional?: boolean | undefined;
1433
+ max?: number | undefined;
1434
+ min?: number | undefined;
1435
+ gt?: number | undefined;
1436
+ lt?: number | undefined;
1437
+ int?: boolean | undefined;
1438
+ } | {
1439
+ type: "boolean";
1440
+ default?: boolean | undefined;
1441
+ optional?: boolean | undefined;
1442
+ } | {
1443
+ values: string[];
1444
+ type: "enum";
1445
+ default?: string | undefined;
1446
+ optional?: boolean | undefined;
1447
+ })> | undefined;
1448
+ } | undefined;
1449
+ experimental?: {
1450
+ clientPrerender?: boolean | undefined;
1451
+ contentIntellisense?: boolean | undefined;
1452
+ responsiveImages?: boolean | undefined;
1453
+ svg?: boolean | undefined;
1454
+ serializeConfig?: boolean | undefined;
1455
+ session?: boolean | undefined;
1456
+ headingIdCompat?: boolean | undefined;
1457
+ preserveScriptOrder?: boolean | undefined;
1458
+ } | undefined;
1459
+ legacy?: {
1460
+ collections?: boolean | undefined;
1461
+ } | undefined;
1462
+ }>;