Merge pull request 'Vite build tools' (#695) from mmalmi/snort:main into main
continuous-integration/drone/push Build is running Details

This commit is contained in:
Martti Malmi 2023-11-20 17:38:09 +02:00 committed by Gitea
parent 5b3680d0df
commit 81d4382aba
1 changed files with 1 additions and 1 deletions

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',
});