We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 042de68 commit 96841beCopy full SHA for 96841be
1 file changed
src/core/cine/jpegDecodePool.ts
@@ -17,10 +17,9 @@ function ensureWorkers(): Comlink.Remote<JpegDecoderWorker>[] {
17
);
18
proxies = Array.from({ length: count }, () =>
19
Comlink.wrap<JpegDecoderWorker>(
20
- new Worker(
21
- new URL('@/src/core/cine/jpegDecode.worker.ts', import.meta.url),
22
- { type: 'module' }
23
- )
+ new Worker(new URL('./jpegDecode.worker.ts', import.meta.url), {
+ type: 'module',
+ })
24
)
25
26
return proxies;
0 commit comments