Skip to content

Commit 942b013

Browse files
committed
fix: fixed worker script import path
1 parent 6c93bfe commit 942b013

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/workers/utils.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,7 @@ import * as workerErrors from './errors.js';
1111
import { polykeyWorkerManifest } from '../workers/index.js';
1212

1313
const dirname = url.fileURLToPath(new URL('.', import.meta.url));
14-
const workerPath = path.join(
15-
dirname,
16-
'../../dist/workers/polykeyWorkerManifest.js',
17-
);
14+
const workerPath = path.join(dirname, './polykeyWorkerManifest.js');
1815

1916
async function createWorkerManager({
2017
cores,

0 commit comments

Comments
 (0)