aboutsummaryrefslogtreecommitdiff
path: root/webpack.renderer.js
diff options
context:
space:
mode:
authorChristoph Settgast <csett86@web.de>2022-03-25 07:05:38 +0100
committerGitHub <noreply@github.com>2022-03-25 07:05:38 +0100
commit5c53a8cb3ea468ca43db448273d6c1d18d8f36ee (patch)
tree888b22def38c335151bb7fa7a807f87960cd6b6b /webpack.renderer.js
parentf58f8c90ffa0fb6cb7a82d4c7854043a055f4e13 (diff)
chore(deps): remove process polyfill (#738)
The @atlaskit/navigation also works fine without reference to whether its running on mac or not (for the way its used in this project).
Diffstat (limited to 'webpack.renderer.js')
-rw-r--r--webpack.renderer.js9
1 files changed, 1 insertions, 8 deletions
diff --git a/webpack.renderer.js b/webpack.renderer.js
index 0506225..d28284d 100644
--- a/webpack.renderer.js
+++ b/webpack.renderer.js
@@ -1,6 +1,5 @@
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
-const webpack = require('webpack');
const ELECTRON_VERSION = require('./package.json').devDependencies.electron;
module.exports = {
@@ -15,9 +14,6 @@ module.exports = {
plugins: [
new HtmlWebpackPlugin({
template: './app/index.html'
- }),
- new webpack.ProvidePlugin({
- process: 'process/browser'
})
],
output: {
@@ -84,10 +80,7 @@ module.exports = {
resolve: {
modules: [
path.resolve('./node_modules')
- ],
- alias: {
- process: 'process/browser'
- }
+ ]
}
};