Browse Source

fix: avoid using worker in file protocol

20230320
Emmm Monster 3 years ago
parent
commit
8fdda048f6
No known key found for this signature in database GPG Key ID: C98279C83FB50DB9
  1. 2
      src/component/FileSelector.vue

2
src/component/FileSelector.vue

@ -63,7 +63,7 @@ export default {
} }
}, },
mounted() { mounted() {
if (window.Worker && process.env.NODE_ENV === 'production') { if (window.Worker && window.location.protocol !== "file:" && process.env.NODE_ENV === 'production') {
console.log("Using Worker Pool") console.log("Using Worker Pool")
this.queue = Pool( this.queue = Pool(
() => spawn(new Worker('@/utils/worker.ts')), () => spawn(new Worker('@/utils/worker.ts')),

Loading…
Cancel
Save