Skip to content

Commit

Permalink
Update .changeset/unlucky-ravens-type.md
Browse files Browse the repository at this point in the history
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
  • Loading branch information
ematipico and sarah11918 authored Aug 3, 2023
1 parent 6bf9e43 commit 61013c0
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .changeset/unlucky-ravens-type.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,13 @@
'astro': major
---

The property `compressHTML` is now `true` by default.
The property `compressHTML` is now `true` by default. Setting this value to `true` is no longer required.

If you do not want to minify your HTML output, you must set this value to `false` in `astro.config.mjs`.

```diff
import {defineConfig} from "astro/config";
export default defineConfig({
+ compressHTML: false
})
```

0 comments on commit 61013c0

Please sign in to comment.