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/theme-store.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'packages/frontend/src/theme-store.ts') diff --git a/packages/frontend/src/theme-store.ts b/packages/frontend/src/theme-store.ts index e71b4354f3..9cae68d5d3 100644 --- a/packages/frontend/src/theme-store.ts +++ b/packages/frontend/src/theme-store.ts @@ -3,10 +3,10 @@ * SPDX-License-Identifier: AGPL-3.0-only */ -import { Theme } from './scripts/theme'; -import { miLocalStorage } from './local-storage'; -import { api } from '@/os'; -import { $i } from '@/account'; +import { Theme } from '@/scripts/theme.js'; +import { miLocalStorage } from '@/local-storage.js'; +import { api } from '@/os.js'; +import { $i } from '@/account.js'; const lsCacheKey = $i ? `themes:${$i.id}` as const : null; -- cgit v1.2.3-freya