Update types to specify that compress defaults to true (#8072)
* Update types to specify that compress defaults to true * Update astro.ts --------- Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
This commit is contained in:
parent
5208a3c8fe
commit
4477bb41c8
2 changed files with 9 additions and 4 deletions
5
.changeset/tasty-camels-speak.md
Normal file
5
.changeset/tasty-camels-speak.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Update Astro types to reflect that compress defaults to true
|
|
@ -542,14 +542,14 @@ export interface AstroUserConfig {
|
|||
* @docs
|
||||
* @name compressHTML
|
||||
* @type {boolean}
|
||||
* @default `false`
|
||||
* @default `true`
|
||||
* @description
|
||||
* This is an option to minify your HTML output and reduce the size of your HTML files. When enabled, 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 enable this, set the `compressHTML` flag to `true`.
|
||||
* 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`.
|
||||
*
|
||||
* ```js
|
||||
* {
|
||||
* compressHTML: true
|
||||
* compressHTML: false
|
||||
* }
|
||||
* ```
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue