mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -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({
|
const viteConfig = defineViteConfig({
|
||||||
plugins: [sveltekit(), svg({})],
|
plugins: [
|
||||||
|
sveltekit(),
|
||||||
|
svg({ svgoOptions: { plugins: [{ name: "cleanupIds", params: { remove: false } }] } }),
|
||||||
|
],
|
||||||
build: {
|
build: {
|
||||||
reportCompressedSize: false,
|
reportCompressedSize: false,
|
||||||
// defaults use chrome87, but we need 77 for qt 5.14
|
// defaults use chrome87, but we need 77 for qt 5.14
|
||||||
|
|
Loading…
Reference in a new issue