From 30de3dc384775739a03bb400f61946b66b2a5fd1 Mon Sep 17 00:00:00 2001 From: Niko Date: Mon, 26 May 2025 23:35:17 +0200 Subject: [PATCH] Disabled html compress due to css nesting issues --- astro.config.mjs | 1 + src/layouts/Layout.astro | 1 + 2 files changed, 2 insertions(+) diff --git a/astro.config.mjs b/astro.config.mjs index 0c80e04fb..227803528 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -117,6 +117,7 @@ export default defineConfig({ pagefind(), deleteUnusedImages(), compress({ + HTML: false, CSS: false, SVG: false, }), diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 8e7fc8672..805dfacf7 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -29,6 +29,7 @@ const externalDomain = new URL(Astro.site || "").hostname; +