updated astro to v2.5, compress html by default

This commit is contained in:
Philippe Loctaux 2023-05-19 12:09:19 +02:00
parent e1987c0bd8
commit 8ad1551948
3 changed files with 49 additions and 30 deletions

View file

@ -4,5 +4,6 @@ import compress from "astro-compress";
// https://astro.build/config
export default defineConfig({
integrations: [tailwind(), compress()]
integrations: [tailwind(), compress()],
compressHTML: true,
});