From 533ec9d485864cd6d270d7b7421dd31f5906de8e Mon Sep 17 00:00:00 2001 From: Peter Blazejewicz Date: Sat, 18 May 2019 23:50:39 +0200 Subject: [PATCH] Remove deprecated dedupe plugin usage See: https://webpack.js.org/migrate/3/#dedupeplugin-has-been-removed Thanks! --- webpack.config.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index 587421ff4..53240cba8 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -194,10 +194,6 @@ module.exports = function makeWebpackConfig() { // Only emit files when there are no errors new webpack.NoErrorsPlugin(), - // Reference: http://webpack.github.io/docs/list-of-plugins.html#dedupeplugin - // Dedupe modules in the output - new webpack.optimize.DedupePlugin(), - // Reference: http://webpack.github.io/docs/list-of-plugins.html#uglifyjsplugin // Minify all javascript, switch loaders to minimizing mode new webpack.optimize.UglifyJsPlugin(),