From 8814a36f7271c543f0613c8081c0a81a3b9ab512 Mon Sep 17 00:00:00 2001 From: Bjorn Lu Date: Thu, 18 May 2023 18:48:59 +0800 Subject: [PATCH] Fix customClientDirectives config default typo (#7119) --- packages/astro/src/core/config/schema.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/astro/src/core/config/schema.ts b/packages/astro/src/core/config/schema.ts index dd21289cc3..1c246a4a84 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, },