vite/playground/worker/emit-chunk-sub-worker.js
2022-12-04 08:19:06 +01:00

12 lines
271 B
JavaScript

Promise.all([
import('./module-and-worker'),
import('./modules/module2'),
import('./modules/module3'),
]).then((data) => {
const _data = { ...data[0], ...data[1], ...data[2] }
self.postMessage(_data)
})
// for sourcemap
console.log('emit-chunk-sub-worker.js')