From 60d9de74f4e4e8fbfdafa089b55fd4c091b47997 Mon Sep 17 00:00:00 2001 From: prototypa Date: Wed, 18 Jan 2023 23:38:09 -0500 Subject: [PATCH] Don't remove quotes around attributes when possible --- astro.config.mjs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/astro.config.mjs b/astro.config.mjs index e612903..8a62d91 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -45,7 +45,9 @@ export default defineConfig({ compress({ css: true, - html: true, + html: { + removeAttributeQuotes: false, + }, img: false, js: true, svg: false,