From 69656e0181409d49c70ef2ee3e9e36e4253f745d Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Fri, 13 Feb 2026 14:07:41 +0200 Subject: [PATCH] minor change for paths in SW --- src/sw.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/sw.js b/src/sw.js index 38a2fe7b2..e3225c91d 100644 --- a/src/sw.js +++ b/src/sw.js @@ -4,11 +4,10 @@ import 'virtual:pleroma-fe/service_worker_env' import { createI18n } from 'vue-i18n' -import { parseNotification } from './services/entity_normalizer/entity_normalizer.service.js' -import { prepareNotificationObject } from './services/notification_utils/notification_utils.js' -import { cacheKey, emojiCacheKey, shouldCache } from './services/sw/sw.js' - import { storage } from 'src/lib/storage.js' +import { parseNotification } from 'src/services/entity_normalizer/entity_normalizer.service.js' +import { prepareNotificationObject } from 'src/services/notification_utils/notification_utils.js' +import { cacheKey, emojiCacheKey, shouldCache } from 'src/services/sw/sw.js' // Collects all messages for service workers // Needed because service workers cannot use dynamic imports