From b0f6c44f36f3173f5d232d1adb02fc09dfdcc003 Mon Sep 17 00:00:00 2001 From: syuilo Date: Tue, 19 Sep 2023 16:37:43 +0900 Subject: refactor(frontend): use ESM --- packages/frontend/src/i18n.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'packages/frontend/src/i18n.ts') 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)); -- cgit v1.2.3-freya