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;