From 51fcb865216e8cac9fd6ef60b46fa6660d3b0cd1 Mon Sep 17 00:00:00 2001 From: Abdo Date: Wed, 28 May 2025 09:39:51 +0300 Subject: [PATCH] Fix color hint not changing Due to IDs such as `mdi-color-helper` being removed. --- ts/vite.config.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ts/vite.config.ts b/ts/vite.config.ts index 233b6c8e1..c2cd12c8d 100644 --- a/ts/vite.config.ts +++ b/ts/vite.config.ts @@ -19,7 +19,10 @@ const configure = (proxy: any, _options: any) => { }; const viteConfig = defineViteConfig({ - plugins: [sveltekit(), svg({})], + plugins: [ + sveltekit(), + svg({ svgoOptions: { plugins: [{ name: "cleanupIds", params: { remove: false } }] } }), + ], build: { reportCompressedSize: false, // defaults use chrome87, but we need 77 for qt 5.14