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 35013d0 commit be293deCopy full SHA for be293de
webpack-watch.config.js
@@ -1,3 +1,8 @@
1
const config = require("./webpack-dist.config.js")
2
3
+config.plugins = config.plugins.filter(plugin => {
4
+ // Disable minification
5
+ return plugin.constructor.name !== "UglifyJsPlugin"
6
+})
7
+
8
module.exports = config
0 commit comments