diff options
author | Christoph Settgast <csett86@web.de> | 2022-03-25 07:06:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-25 07:06:00 +0100 |
commit | bc71f954ac201cde1591d607df51fbfebdb27e36 (patch) | |
tree | 23cdb18290687d4eaa57af3c643682fef3e1f439 /webpack.main.js | |
parent | 5c53a8cb3ea468ca43db448273d6c1d18d8f36ee (diff) |
chore: remove unused alias for process in webpack.main config (#739)
process is available in the electron-main target, no need to alias
Diffstat (limited to 'webpack.main.js')
-rw-r--r-- | webpack.main.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/webpack.main.js b/webpack.main.js index ddb4628..074c3af 100644 --- a/webpack.main.js +++ b/webpack.main.js @@ -19,10 +19,7 @@ module.exports = { resolve: { modules: [ path.resolve('./node_modules') - ], - alias: { - process: 'process/browser' - } + ] } }; |