aboutsummaryrefslogtreecommitdiff
path: root/webpack.main.js
diff options
context:
space:
mode:
authorChristoph Settgast <csett86@web.de>2022-03-25 07:06:00 +0100
committerGitHub <noreply@github.com>2022-03-25 07:06:00 +0100
commitbc71f954ac201cde1591d607df51fbfebdb27e36 (patch)
tree23cdb18290687d4eaa57af3c643682fef3e1f439 /webpack.main.js
parent5c53a8cb3ea468ca43db448273d6c1d18d8f36ee (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.js5
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'
- }
+ ]
}
};