diff options
| author | Fuwn <[email protected]> | 2024-07-25 00:28:00 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-07-25 00:28:00 -0700 |
| commit | 52c2447c2a143e8786bfc5831b9a6a0b99167efd (patch) | |
| tree | f838974667fe9bb0e67c7ae83cac10adfcc90fa2 | |
| parent | deps(web-push): add types (diff) | |
| download | due.moe-52c2447c2a143e8786bfc5831b9a6a0b99167efd.tar.xz due.moe-52c2447c2a143e8786bfc5831b9a6a0b99167efd.zip | |
fix(service-worker): fix import paths
| -rw-r--r-- | src/service-worker.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/service-worker.ts b/src/service-worker.ts index 082a25de..6ce56da5 100644 --- a/src/service-worker.ts +++ b/src/service-worker.ts @@ -4,8 +4,8 @@ /// <reference lib="webworker" /> import { build, files, version } from '$service-worker'; -import { database } from './lib/Database/user'; -import { type Notification, notifications } from './lib/Data/AniList/notifications'; +import { database } from './lib/Database/IndexedDB/user'; +import { notifications } from './lib/Data/AniList/notifications'; const sw = /** @type {ServiceWorkerGlobalScope} */ /** @type {unknown} */ self; |