From b65c4f6d11fff63c40b450ab914b63dfffa09e17 Mon Sep 17 00:00:00 2001 From: Louis Pilfold Date: Fri, 19 Jan 2024 11:56:58 +0000 Subject: Fix path --- static/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/index.js b/static/index.js index 600b638..3f495af 100644 --- a/static/index.js +++ b/static/index.js @@ -66,7 +66,7 @@ function debounce(fn, delay) { let workerWorking = false; let queuedWork = undefined; -const worker = new Worker("worker.js", { type: "module" }); +const worker = new Worker("/worker.js", { type: "module" }); function sendToWorker(code) { if (workerWorking) { -- cgit v1.2.3