summaryrefslogtreecommitdiff
path: root/.changeset/tiny-snails-dance.md
diff options
context:
space:
mode:
authorGravatar Houston (Bot) <108291165+astrobot-houston@users.noreply.github.com> 2023-05-18 09:31:59 -0700
committerGravatar GitHub <noreply@github.com> 2023-05-18 12:31:59 -0400
commit31cbf4357e866abab62bb4ccf949f5a59aec06ac (patch)
treefdf22a00c332e3082b3d369c3eda497892351f0d /.changeset/tiny-snails-dance.md
parentdad105a91e2d9b59cfd6aba7703207ba08841c10 (diff)
downloadastro-31cbf4357e866abab62bb4ccf949f5a59aec06ac.tar.gz
astro-31cbf4357e866abab62bb4ccf949f5a59aec06ac.tar.zst
astro-31cbf4357e866abab62bb4ccf949f5a59aec06ac.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to '.changeset/tiny-snails-dance.md')
-rw-r--r--.changeset/tiny-snails-dance.md17
1 files changed, 0 insertions, 17 deletions
diff --git a/.changeset/tiny-snails-dance.md b/.changeset/tiny-snails-dance.md
deleted file mode 100644
index ef25e0459..000000000
--- a/.changeset/tiny-snails-dance.md
+++ /dev/null
@@ -1,17 +0,0 @@
----
-'astro': minor
----
-
-Adds an opt-in way to minify the HTML output.
-
-Using the `compressHTML` option Astro will remove whitespace from Astro components. This only applies to components written in `.astro` format and happens in the compiler to maximize performance. You can enable with:
-
-```js
-import { defineConfig } from 'astro/config';
-
-export default defineConfig({
- compressHTML: true
-});
-```
-
-Compression occurs both in development mode and in the final build.