forked from treehouse/mastodon
switch uglify to compress:true,mangle:true (#2852)
parent
bd71327180
commit
8009366231
|
@ -12,22 +12,8 @@ module.exports = merge(sharedConfig, {
|
||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
new webpack.optimize.UglifyJsPlugin({
|
new webpack.optimize.UglifyJsPlugin({
|
||||||
compress: {
|
compress: true,
|
||||||
unused: true,
|
mangle: true,
|
||||||
evaluate: true,
|
|
||||||
booleans: true,
|
|
||||||
drop_debugger: true,
|
|
||||||
dead_code: true,
|
|
||||||
pure_getters: true,
|
|
||||||
negate_iife: true,
|
|
||||||
conditionals: true,
|
|
||||||
loops: true,
|
|
||||||
cascade: true,
|
|
||||||
keep_fargs: false,
|
|
||||||
warnings: true
|
|
||||||
},
|
|
||||||
|
|
||||||
mangle: false,
|
|
||||||
|
|
||||||
output: {
|
output: {
|
||||||
comments: false
|
comments: false
|
||||||
|
|
Loading…
Reference in New Issue