diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-09 14:32:29 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-09 14:32:29 +0900 |
| commit | 2918fb2609cf26401847116dcd57f88bf694643a (patch) | |
| tree | 1a66dbdb9f35098aeaa7c213ff56ac8acde85e6b /packages/frontend/src/boot | |
| parent | Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop (diff) | |
| download | sharkey-2918fb2609cf26401847116dcd57f88bf694643a.tar.gz sharkey-2918fb2609cf26401847116dcd57f88bf694643a.tar.bz2 sharkey-2918fb2609cf26401847116dcd57f88bf694643a.zip | |
refactor(frontend): relocate theme script
Diffstat (limited to 'packages/frontend/src/boot')
| -rw-r--r-- | packages/frontend/src/boot/common.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/boot/common.ts b/packages/frontend/src/boot/common.ts index d66ff21519..90d80f02c6 100644 --- a/packages/frontend/src/boot/common.ts +++ b/packages/frontend/src/boot/common.ts @@ -12,7 +12,7 @@ import type { App } from 'vue'; import widgets from '@/widgets/index.js'; import directives from '@/directives/index.js'; import components from '@/components/index.js'; -import { applyTheme } from '@/utility/theme.js'; +import { applyTheme } from '@/theme.js'; import { isDeviceDarkmode } from '@/utility/is-device-darkmode.js'; import { updateI18n, i18n } from '@/i18n.js'; import { $i, refreshAccount, login } from '@/account.js'; |