fix: fix path to solver worker

This commit is contained in:
2025-07-14 20:50:53 +02:00
parent fab389f4e4
commit f52f7312a4

View File

@@ -70,7 +70,7 @@ export async function solveChallenges({
const workers = workerChallenges.map(async (challenges) => {
const worker = new Worker(
new URL("./solver-worker.js", import.meta.url),
new URL("./worker.js", import.meta.url),
{
type: "module",
},