diff --git a/frontend/src/utils/common.js b/frontend/src/utils/common.js index cf87b70..a72cc3a 100644 --- a/frontend/src/utils/common.js +++ b/frontend/src/utils/common.js @@ -19,7 +19,7 @@ const checkWebWorker = (key, worker) => { const getWebWorker = () => { let w; if (typeof w === 'undefined') { - w = new Worker('/Vytal/worker.js'); + w = new Worker('worker.js'); } return w; };