[ci] format
This commit is contained in:
parent
39403c32fa
commit
64b2b65410
1 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@ const ASTRO_CONFIG_DEFAULTS: AstroUserConfig & any = {
|
|||
redirects: {},
|
||||
experimental: {
|
||||
assets: false,
|
||||
redirects: false
|
||||
redirects: false,
|
||||
},
|
||||
};
|
||||
|
||||
|
@ -205,7 +205,7 @@ export const AstroConfigSchema = z.object({
|
|||
experimental: z
|
||||
.object({
|
||||
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()
|
||||
.refine(
|
||||
|
|
Loading…
Reference in a new issue