From dd6cb4acc3f0c1d2c0ec61d0abde056124473c41 Mon Sep 17 00:00:00 2001 From: Soufiane Fariss Date: Mon, 19 Aug 2024 15:19:30 +0200 Subject: [PATCH] declare gzip files as static assets in vite.config.js --- web/explorer/vite.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/explorer/vite.config.js b/web/explorer/vite.config.js index c615b10f..1c469aeb 100644 --- a/web/explorer/vite.config.js +++ b/web/explorer/vite.config.js @@ -14,6 +14,7 @@ export default defineConfig(({ mode }) => { "@": fileURLToPath(new URL("src", import.meta.url)), "@testfiles": fileURLToPath(new URL("../../tests/data", import.meta.url)) } - } + }, + assetsInclude: ["**/*.gz"] }; });