Update astro.config.mjs

Fixes settings for AstroCompress as they were pascal cased in the later version.
This commit is contained in:
Nikola Hristov
2023-08-14 18:39:23 +03:00
committed by GitHub
parent c98dd50617
commit f398eb58e7

View File

@ -64,15 +64,14 @@ export default defineConfig({
tasks(), tasks(),
compress({ compress({
css: true, CSS: true,
html: { HTML: {
removeAttributeQuotes: false, removeAttributeQuotes: false,
}, },
img: false, Image: false,
js: true, JavaScript: true,
svg: true, SVG: true,
Logger: 1,
logger: 1,
}), }),
], ],