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/stream.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'packages/frontend/src/stream.ts') diff --git a/packages/frontend/src/stream.ts b/packages/frontend/src/stream.ts index b241316648..27fce4d4b8 100644 --- a/packages/frontend/src/stream.ts +++ b/packages/frontend/src/stream.ts @@ -5,8 +5,8 @@ import * as Misskey from 'misskey-js'; import { markRaw } from 'vue'; -import { $i } from '@/account'; -import { url } from '@/config'; +import { $i } from '@/account.js'; +import { url } from '@/config.js'; let stream: Misskey.Stream | null = null; -- cgit v1.2.3-freya