remove UglifyJsPlugin

This commit is contained in:
Collin Barrett 2018-03-25 17:24:37 -05:00
parent 81df751473
commit 40b9ae9599

View file

@ -45,11 +45,7 @@ module.exports = (env) => {
new webpack.DefinePlugin({
'process.env.NODE_ENV': isDevBuild ? '"development"' : '"production"'
})
].concat(isDevBuild
? []
: [
new webpack.optimize.UglifyJsPlugin()
])
]
}
];
};