We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a176547 commit e2f514fCopy full SHA for e2f514f
src/webWorker/webWorkerManager.js
@@ -15,6 +15,9 @@ const defaultConfig = {
15
webWorkerTaskPaths: []
16
}
17
18
+// limit number of web workers to avoid memory problems in certain browsers
19
+defaultConfig.maxWebWorkers = Math.min(defaultConfig.maxWebWorkers, 7)
20
+
21
let config
22
23
const statistics = {
0 commit comments