From 1e0abb4200fe71b94a38835c94539c20c0eed5a2 Mon Sep 17 00:00:00 2001 From: "leonid.polukhin" Date: Thu, 27 Jun 2024 13:07:40 +0300 Subject: [PATCH] nimber of workers reverted --- examples/webpack5/src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/webpack5/src/App.tsx b/examples/webpack5/src/App.tsx index a5722a0..e3095cd 100644 --- a/examples/webpack5/src/App.tsx +++ b/examples/webpack5/src/App.tsx @@ -4,7 +4,7 @@ import { WorkerUrl } from 'worker-url'; function App() { const WorkerURL = new WorkerUrl(new URL('./worker/worker.ts', import.meta.url)) const pool = workerpool.pool(WorkerURL.toString(), { - maxWorkers: 4, + maxWorkers: 3, });