From c7b69ad97b73338f3663a3923650bbce151c093c Mon Sep 17 00:00:00 2001 From: SethBurkart123 Date: Sun, 17 Aug 2025 11:27:23 +1000 Subject: [PATCH] chore: import updates --- src/seqta/main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/seqta/main.ts b/src/seqta/main.ts index e428e6cc..f9aa49cb 100644 --- a/src/seqta/main.ts +++ b/src/seqta/main.ts @@ -16,9 +16,9 @@ export async function main() { if (settingsState.onoff) { injectPageState(); - // TEMP FIX for bug! -> this is a hack to get the injected.css file to have HMR in development mode as this import system is currently broken with crxjs + // Rather permanent FIX for bug! -> this is a hack to get the injected.css file to have HMR in development mode as this import system is currently broken with crxjs if (import.meta.env.MODE === "development") { - import("../css/injected.scss"); + import("@/css/injected.scss"); } else { const injectedStyle = document.createElement("style"); injectedStyle.textContent = injectedCSS;