From f6b14fb2167ec3d9d7a522f1de80a5e3c434494b Mon Sep 17 00:00:00 2001 From: wuls Date: Thu, 4 May 2023 18:57:19 +0800 Subject: [PATCH] fix comment --- packages/astro/src/@types/astro.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index f3738d53c..336b6ae97 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -452,7 +452,8 @@ export interface AstroUserConfig { * @type {boolean} * @default `true` * @description - * Set to `true` to enable compressHTML mode. This will remove all whitespace from your final HTMl file, including newlines. This is useful for reducing the size of your final build html bundle + * Astro removes all whitespace from your final HTML file, including line breaks, by default. This is useful for reducing the size of your final build's HTML bundle. + * To disable this, set the `compressHTML` flag to `false`. * * ```js * {