1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

perf: use fork() for the import process

This commit is contained in:
2022-02-24 13:14:57 +01:00
parent 1990d9a3d4
commit 573ac6d42e
8 changed files with 197 additions and 115 deletions

View File

@ -13,7 +13,8 @@ const config = {
mode: process.env.NODE_ENV,
devtool: isDevMode ? 'eval-source-map' : false,
entry: {
exporter: path.join(__dirname, './src/main/workers/exporter.js')
exporter: path.join(__dirname, './src/main/workers/exporter.js'),
importer: path.join(__dirname, './src/main/workers/importer.js')
},
target: 'node',
output: {