Skip to content

Commit

Permalink
feat(webpack): activate uglify plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
tkohr committed Jul 31, 2023
1 parent 08bc2e5 commit f3b70af
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ module.exports = function(UglifyJsPluginCache) {
},
optimization: {
minimizer: [
// new UglifyJsPlugin({
// cache: UglifyJsPluginCache,
// parallel: true,
// sourceMap: true,
// uglifyOptions: {
// compress: false
// }
// })
new UglifyJsPlugin({
cache: UglifyJsPluginCache,
parallel: true,
sourceMap: true,
uglifyOptions: {
compress: false
}
})
]
},
resolve: {
Expand Down

0 comments on commit f3b70af

Please sign in to comment.