mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
perf: improve uglify plugin options
This commit is contained in:
parent
49d59c68f8
commit
2996160151
@ -136,10 +136,12 @@ export default function webpackClientConfig() {
|
||||
|
||||
// Minify JS
|
||||
// https://github.com/webpack-contrib/uglifyjs-webpack-plugin
|
||||
if (this.options.build.uglify !== false) {
|
||||
config.plugins.push(
|
||||
new UglifyJSPlugin({
|
||||
new UglifyJSPlugin(Object.assign({
|
||||
cache: true,
|
||||
sourceMap: true,
|
||||
parallel: true,
|
||||
extractComments: {
|
||||
filename: 'LICENSES'
|
||||
},
|
||||
@ -148,8 +150,9 @@ export default function webpackClientConfig() {
|
||||
comments: /^\**!|@preserve|@license|@cc_on/
|
||||
}
|
||||
}
|
||||
})
|
||||
}, this.options.build.uglify))
|
||||
)
|
||||
}
|
||||
|
||||
// Webpack Bundle Analyzer
|
||||
if (this.options.build.analyze) {
|
||||
|
@ -198,6 +198,7 @@ Options.defaults = {
|
||||
extractCSS: false,
|
||||
cssSourceMap: undefined,
|
||||
ssr: undefined,
|
||||
uglify: {},
|
||||
publicPath: '/_nuxt/',
|
||||
filenames: {
|
||||
css: 'vendor.[contenthash].css',
|
||||
|
Loading…
Reference in New Issue
Block a user