diff options
author | Kanishka Bansode <96020697+kb-0311@users.noreply.github.com> | 2022-03-25 02:12:46 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-24 21:42:46 +0100 |
commit | f58f8c90ffa0fb6cb7a82d4c7854043a055f4e13 (patch) | |
tree | dbc1fc78107f909a7c7483d0ec27dd8ac3020317 /webpack.main.js | |
parent | 480543e8616d50c89dcb23d541eb1aec51f5f201 (diff) |
chore(deps): migrate webpack 4 to 5 (#732)
update babel to latest minor while at it
Diffstat (limited to 'webpack.main.js')
-rw-r--r-- | webpack.main.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/webpack.main.js b/webpack.main.js index 074c3af..ddb4628 100644 --- a/webpack.main.js +++ b/webpack.main.js @@ -19,7 +19,10 @@ module.exports = { resolve: { modules: [ path.resolve('./node_modules') - ] + ], + alias: { + process: 'process/browser' + } } }; |