From e79859129b9b33d222f73cac3c2f3de89ddb8c87 Mon Sep 17 00:00:00 2001 From: Dillon Walsh Date: Tue, 25 Jun 2024 07:17:14 -0400 Subject: [PATCH] Update CompressHTML Whitespace issue #7502 (#11298) --- packages/astro/src/@types/astro.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index ca887ac3a2..5ddeed899c 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -750,8 +750,11 @@ export interface AstroUserConfig { * @type {boolean} * @default `true` * @description - * This is an option to minify your HTML output and reduce the size of your HTML files. By default, Astro removes all whitespace from your HTML, including line breaks, from `.astro` components. This occurs both in development mode and in the final build. - * To disable HTML compression, set the `compressHTML` flag to `false`. + * + * This is an option to minify your HTML output and reduce the size of your HTML files, occuring both in development mode and in the final build. + * By default, Astro removes whitespace from your HTML, including line breaks, from .astro components in a lossless manner. + * It is important to note that some whitespace may be kept to preserve the visual rendering of your HTML. + * To disable HTML compression, set the compressHTML flag to false. * * ```js * {