astro/.changeset/unlucky-ravens-type.md
Emanuele Stoppa f32d093a28 feat: change compressHTML default value to true (#7918)
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
2023-08-08 11:02:51 +01:00

348 B

astro
major

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.

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