Vite build tools #695

Merged
mmalmi merged 6 commits from mmalmi/snort:main into main 2023-11-20 16:22:03 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 5c0ad1c375 - Show all commits

View File

@ -17,7 +17,7 @@ export class PowWorker implements PowMiner {
#queue: Map<string, PowQueue> = new Map();
constructor(workerPath: string) {
this.#worker = new Worker(new URL(workerPath, import.meta.url), {
this.#worker = new Worker(workerPath, {
type: 'module',
name: 'POW',
});