diff options
author | 2023-06-05 18:21:15 +0000 | |
---|---|---|
committer | 2023-06-05 18:21:15 +0000 | |
commit | 64b2b654109cda3dfdefec5104682eb96aaaead3 (patch) | |
tree | 2785ffd613c7b9f7cc5389d57f7e811382d838a5 | |
parent | 39403c32faea58399c61d3344b770f195be60d5b (diff) | |
download | astro-64b2b654109cda3dfdefec5104682eb96aaaead3.tar.gz astro-64b2b654109cda3dfdefec5104682eb96aaaead3.tar.zst astro-64b2b654109cda3dfdefec5104682eb96aaaead3.zip |
[ci] format
-rw-r--r-- | packages/astro/src/core/config/schema.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/astro/src/core/config/schema.ts b/packages/astro/src/core/config/schema.ts index 5f070ac6e..3edabc5d5 100644 --- a/packages/astro/src/core/config/schema.ts +++ b/packages/astro/src/core/config/schema.ts @@ -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( |