We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6df9528 commit 4deef92Copy full SHA for 4deef92
src/configure.js
@@ -169,7 +169,7 @@ export default function configure(options) {
169
}),
170
plugins: (webpackConfig.plugins || []).filter( plugin => {
171
let name = plugin && plugin.constructor.name;
172
- return name!=='UglifyJSPlugin';
+ return /^\s*(UglifyJSPlugin|HTMLWebpackPlugin|ExtractTextPlugin)\s*$/gi.test(name);
173
})
174
},
175
0 commit comments