refactor(frontend): relocate theme script

This commit is contained in:
syuilo
2025-03-09 14:32:29 +09:00
parent fcd7fa62ba
commit 2918fb2609
12 changed files with 17 additions and 17 deletions

View File

@@ -81,13 +81,13 @@ import JSON5 from 'json5';
import lightTheme from '@@/themes/_light.json5';
import darkTheme from '@@/themes/_dark.json5';
import { host } from '@@/js/config.js';
import type { Theme } from '@/utility/theme.js';
import type { Theme } from '@/theme.js';
import MkButton from '@/components/MkButton.vue';
import MkCodeEditor from '@/components/MkCodeEditor.vue';
import MkTextarea from '@/components/MkTextarea.vue';
import MkFolder from '@/components/MkFolder.vue';
import { $i } from '@/account.js';
import { applyTheme } from '@/utility/theme.js';
import { applyTheme } from '@/theme.js';
import * as os from '@/os.js';
import { store } from '@/store.js';
import { addTheme } from '@/theme-store.js';