summaryrefslogtreecommitdiff
path: root/packages/frontend/src/boot
diff options
context:
space:
mode:
authorsyuilo <4439005+syuilo@users.noreply.github.com>2025-11-26 19:14:40 +0900
committersyuilo <4439005+syuilo@users.noreply.github.com>2025-11-26 19:14:40 +0900
commit6cb6f794e5c3a53c6d855482d45eb187e1b9722c (patch)
tree7ce3f64eb8d4ae1e572745a61975f0514a0eb07d /packages/frontend/src/boot
parentenhance(frontend): viewportの属性を起動後に変化させないこと... (diff)
downloadmisskey-6cb6f794e5c3a53c6d855482d45eb187e1b9722c.tar.gz
misskey-6cb6f794e5c3a53c6d855482d45eb187e1b9722c.tar.bz2
misskey-6cb6f794e5c3a53c6d855482d45eb187e1b9722c.zip
clean up
Diffstat (limited to 'packages/frontend/src/boot')
-rw-r--r--packages/frontend/src/boot/common.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/boot/common.ts b/packages/frontend/src/boot/common.ts
index 4e8281aaf2..355ef01c83 100644
--- a/packages/frontend/src/boot/common.ts
+++ b/packages/frontend/src/boot/common.ts
@@ -3,7 +3,7 @@
* SPDX-License-Identifier: AGPL-3.0-only
*/
-import { computed, watch, version as vueVersion } from 'vue';
+import { watch, version as vueVersion } from 'vue';
import { compareVersions } from 'compare-versions';
import { version, lang, apiUrl, isSafeMode } from '@@/js/config.js';
import defaultLightTheme from '@@/themes/l-light.json5';
@@ -15,11 +15,11 @@ import directives from '@/directives/index.js';
import components from '@/components/index.js';
import { applyTheme } from '@/theme.js';
import { isDeviceDarkmode } from '@/utility/is-device-darkmode.js';
-import { updateI18n, i18n } from '@/i18n.js';
+import { i18n } from '@/i18n.js';
import { refreshCurrentAccount, login } from '@/accounts.js';
import { store } from '@/store.js';
import { fetchInstance, instance } from '@/instance.js';
-import { deviceKind, updateDeviceKind } from '@/utility/device-kind.js';
+import { updateDeviceKind } from '@/utility/device-kind.js';
import { reloadChannel } from '@/utility/unison-reload.js';
import { getUrlWithoutLoginId } from '@/utility/login-id.js';
import { getAccountFromId } from '@/utility/get-account-from-id.js';