Skip to content

Commit

Permalink
fix path to worker.js in index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Dor-sketch committed Jun 26, 2024
1 parent 556d885 commit 66e48b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 66e48b2

Please sign in to comment.