From 9176cf135bc1d9d1a343b8fb6d6423d66df1b725 Mon Sep 17 00:00:00 2001 From: Sarah Rainsberger Date: Wed, 26 Jun 2024 12:39:06 -0300 Subject: [PATCH] [docs] update compressHTML entry for readability (#11345) --- packages/astro/src/@types/astro.ts | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index 46490dfa8b..3668aa9de3 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -751,10 +751,12 @@ export interface AstroUserConfig { * @default `true` * @description * - * 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. + * This is an option to minify your HTML output and reduce the size of your HTML files. + * + * By default, Astro removes whitespace from your HTML, including line breaks, from `.astro` components in a lossless manner. + * Some whitespace may be kept as needed to preserve the visual rendering of your HTML. This occurs both in development mode and in the final build. + * + * To disable HTML compression, set `compressHTML` to false. * * ```js * {