Skip to content

Commit 6e8d9d4

Browse files
committed
Compress more aggressively (thanks @jdalton)
1 parent 479fbec commit 6e8d9d4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

webpack.config.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,12 @@ if (env === 'production') {
2525
config.plugins.push(
2626
new webpack.optimize.UglifyJsPlugin({
2727
compressor: {
28+
pure_getters: true,
29+
unsafe: true,
30+
unsafe_comps: true,
2831
screw_ie8: true,
2932
warnings: false
30-
}
33+
}
3134
})
3235
)
3336
}

0 commit comments

Comments
 (0)