mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 21:53:59 +00:00
Fix minimizer on Webpack production config
This commit is contained in:
parent
52ca9d2201
commit
395591d93e
1 changed files with 18 additions and 16 deletions
|
@ -33,7 +33,23 @@ module.exports = {
|
|||
]
|
||||
},
|
||||
|
||||
optimization: {minimize: false},
|
||||
optimization: {
|
||||
minimizer: [
|
||||
new UglifyJSPlugin({
|
||||
include: /\.min\.js$/,
|
||||
parallel: true,
|
||||
sourceMap: false,
|
||||
uglifyOptions: {
|
||||
compress: true,
|
||||
ie8: false,
|
||||
ecma: 5,
|
||||
output: {comments: false},
|
||||
warnings: false
|
||||
},
|
||||
warningsFilter: () => false
|
||||
})
|
||||
]
|
||||
},
|
||||
|
||||
plugins: [
|
||||
new webpack.DefinePlugin({
|
||||
|
@ -41,20 +57,6 @@ module.exports = {
|
|||
WEBGL_RENDERER: JSON.stringify(true)
|
||||
}),
|
||||
|
||||
new CleanWebpackPlugin([ 'dist' ]),
|
||||
|
||||
new UglifyJSPlugin({
|
||||
include: /\.min\.js$/,
|
||||
parallel: true,
|
||||
sourceMap: false,
|
||||
uglifyOptions: {
|
||||
compress: true,
|
||||
ie8: false,
|
||||
ecma: 5,
|
||||
output: {comments: false},
|
||||
warnings: false
|
||||
},
|
||||
warningsFilter: () => false
|
||||
})
|
||||
new CleanWebpackPlugin([ 'dist' ])
|
||||
]
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue