seller线上删除console
parent
7f46528086
commit
b829d2cd05
|
@ -45,9 +45,26 @@ let cdn = {
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// 删除注释
|
||||||
|
let jsPlugin = [
|
||||||
|
new UglifyJsPlugin({
|
||||||
|
uglifyOptions: {
|
||||||
|
// 删除注释
|
||||||
|
output: {
|
||||||
|
comments: false
|
||||||
|
},
|
||||||
|
compress: {
|
||||||
|
drop_console: true, // 删除所有调式带有console的
|
||||||
|
drop_debugger: true,
|
||||||
|
pure_funcs: ["console.log"] // 删除console.log
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
];
|
||||||
// 判断是否需要加载CDN
|
// 判断是否需要加载CDN
|
||||||
cdn = enableCDN ? cdn : { css: [], js: [] };
|
cdn = enableCDN ? cdn : { css: [], js: [] };
|
||||||
externals = enableCDN ? externals : {};
|
externals = enableCDN ? externals : {};
|
||||||
|
jsPlugin = enableProduction ? jsPlugin : [];
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
css: {
|
css: {
|
||||||
|
@ -80,21 +97,7 @@ module.exports = {
|
||||||
],
|
],
|
||||||
mode: "production",
|
mode: "production",
|
||||||
optimization: {
|
optimization: {
|
||||||
minimizer: [
|
minimizer: jsPlugin,
|
||||||
new UglifyJsPlugin({
|
|
||||||
uglifyOptions: {
|
|
||||||
// 删除注释
|
|
||||||
output: {
|
|
||||||
comments: false
|
|
||||||
},
|
|
||||||
compress: {
|
|
||||||
drop_console: true, // 删除所有调式带有console的
|
|
||||||
drop_debugger: true,
|
|
||||||
pure_funcs: ["console.log"] // 删除console.log
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
],
|
|
||||||
runtimeChunk: "single",
|
runtimeChunk: "single",
|
||||||
splitChunks: {
|
splitChunks: {
|
||||||
chunks: "all",
|
chunks: "all",
|
||||||
|
|
Loading…
Reference in New Issue