0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00

[ci] format

This commit is contained in:
natemoo-re 2023-06-05 18:21:15 +00:00 committed by fredkbot
parent 39403c32fa
commit 64b2b65410

View file

@ -42,7 +42,7 @@ const ASTRO_CONFIG_DEFAULTS: AstroUserConfig & any = {
redirects: {}, redirects: {},
experimental: { experimental: {
assets: false, assets: false,
redirects: false redirects: false,
}, },
}; };
@ -205,7 +205,7 @@ export const AstroConfigSchema = z.object({
experimental: z experimental: z
.object({ .object({
assets: z.boolean().optional().default(ASTRO_CONFIG_DEFAULTS.experimental.assets), assets: z.boolean().optional().default(ASTRO_CONFIG_DEFAULTS.experimental.assets),
redirects: z.boolean().optional().default(ASTRO_CONFIG_DEFAULTS.experimental.redirects) redirects: z.boolean().optional().default(ASTRO_CONFIG_DEFAULTS.experimental.redirects),
}) })
.passthrough() .passthrough()
.refine( .refine(