diff --git a/CHANGELOG.md b/CHANGELOG.md index e69de29..160dfde 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -0,0 +1,13 @@ +## v0.1.0 + +> 2022-08-27 + +## Summary + +Initial relase of a gzip and brotli compressor for Astro. + +### Commits + +- [[`0067f9c`](https://github.com/sondr3/astro-compressor)] Fix compression +- [[`5b821f3`](https://github.com/sondr3/astro-compressor)] Add compression logic +- [[`bfd7439`](https://github.com/sondr3/astro-compressor)] In the beginning there was darkness diff --git a/README.md b/README.md index 3736711..3d3b95a 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ import compressor from "astro-compressor"; export default defineConfig({ // ... - integrations: [compressor()], + integrations: [..., compressor()], }); ```