From 66e48b2edb6268d2a204d8f46b7a63140ea51fda Mon Sep 17 00:00:00 2001 From: Dor-sketch Date: Wed, 26 Jun 2024 20:48:45 +0300 Subject: [PATCH] fix path to worker.js in index.html --- docs/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index 1bb281a..11485bf 100644 --- a/docs/index.html +++ b/docs/index.html @@ -319,7 +319,7 @@ function setupWebWorkers(numWorkers) { const workers = []; for (let i = 0; i < numWorkers; i++) { - const worker = new Worker('/worker.js'); + const worker = new Worker('/AlphaSudokuGo/worker.js'); workers.push({ worker: worker, busy: false }); } return workers;