diff options
author | 2023-05-18 18:48:59 +0800 | |
---|---|---|
committer | 2023-05-18 18:48:59 +0800 | |
commit | 8814a36f7271c543f0613c8081c0a81a3b9ab512 (patch) | |
tree | d046016f286b85f3e3aca2d6940415673dba9160 | |
parent | 28d4d22f7bc4e90c38dbcbba1873d4827aa0d688 (diff) | |
download | astro-8814a36f7271c543f0613c8081c0a81a3b9ab512.tar.gz astro-8814a36f7271c543f0613c8081c0a81a3b9ab512.tar.zst astro-8814a36f7271c543f0613c8081c0a81a3b9ab512.zip |
Fix customClientDirectives config default typo (#7119)
-rw-r--r-- | packages/astro/src/core/config/schema.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/core/config/schema.ts b/packages/astro/src/core/config/schema.ts index dd21289cc..1c246a4a8 100644 --- a/packages/astro/src/core/config/schema.ts +++ b/packages/astro/src/core/config/schema.ts @@ -40,7 +40,7 @@ const ASTRO_CONFIG_DEFAULTS: AstroUserConfig & any = { experimental: { assets: false, hybridOutput: false, - customClientDirecives: false, + customClientDirectives: false, inlineStylesheets: 'never', middleware: false, }, |