diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-09-19 16:37:43 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-09-19 16:37:43 +0900 |
| commit | b0f6c44f36f3173f5d232d1adb02fc09dfdcc003 (patch) | |
| tree | 5ba44e4bdd60bf8dc4d63c4c9bf6b8ba358c51a9 /packages/frontend/src/i18n.ts | |
| parent | feat(frontend): 任意のユーザーリストをタイムラインページ... (diff) | |
| download | misskey-b0f6c44f36f3173f5d232d1adb02fc09dfdcc003.tar.gz misskey-b0f6c44f36f3173f5d232d1adb02fc09dfdcc003.tar.bz2 misskey-b0f6c44f36f3173f5d232d1adb02fc09dfdcc003.zip | |
refactor(frontend): use ESM
Diffstat (limited to 'packages/frontend/src/i18n.ts')
| -rw-r--r-- | packages/frontend/src/i18n.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/i18n.ts b/packages/frontend/src/i18n.ts index 995171b10c..858db74dac 100644 --- a/packages/frontend/src/i18n.ts +++ b/packages/frontend/src/i18n.ts @@ -4,9 +4,9 @@ */ import { markRaw } from 'vue'; -import type { Locale } from '../../../locales'; -import { locale } from '@/config'; -import { I18n } from '@/scripts/i18n'; +import type { Locale } from '../../../locales/index.js'; +import { locale } from '@/config.js'; +import { I18n } from '@/scripts/i18n.js'; export const i18n = markRaw(new I18n<Locale>(locale)); |