mirror of
https://github.com/alex8088/electron-vite.git
synced 2025-04-06 04:05:44 +08:00
perf(worker): ESM syntax
This commit is contained in:
parent
619a337c6d
commit
93e84f6bce
@ -35,7 +35,7 @@ export default function workerPlugin(): Plugin {
|
||||
const assetRefId = `__VITE_NODE_WORKER_ASSET__${hash}__`
|
||||
return `
|
||||
import { Worker } from 'node:worker_threads';
|
||||
export default function (options) { return new Worker(require.resolve(${assetRefId}), options); }`
|
||||
export default function (options) { return new Worker(new URL(${assetRefId}, import.meta.url), options); }`
|
||||
}
|
||||
},
|
||||
renderChunk(code, chunk): { code: string; map: SourceMapInput } | null {
|
||||
|
Loading…
x
Reference in New Issue
Block a user