From c87845ff685d729637db6a49000e44a94fe6e66e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20=C3=87etinkaya?= Date: Tue, 31 Dec 2024 20:28:47 +0300 Subject: [PATCH] feat(presentation): enable gzip compression in astro.config --- src/presentation/astro.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/presentation/astro.config.mjs b/src/presentation/astro.config.mjs index 8270111..3ccdd00 100644 --- a/src/presentation/astro.config.mjs +++ b/src/presentation/astro.config.mjs @@ -19,7 +19,7 @@ export default defineConfig({ }, }), compressor({ - gzip: false, + gzip: true, brotli: true, }), ],