mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
Fix color hint not changing
Due to IDs such as `mdi-color-helper` being removed.
This commit is contained in:
parent
9395b89b92
commit
51fcb86521
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue