webpack配置一些些优化

时间:2023-01-06 21:00:38
1、防止项目在正式站还胡乱地console
在biuld下webpack.prod.conf.js的
plugins:[]加入:
 
new webpack.optimize.UglifyJsPlugin({//我现在不想要各种打印了
compress:{
warnings: false,//警告
drop_debugger: true,//debugger
drop_console: true//console
}
}),

2、减少目录检索范围

 loader 遍历的目录范围可以缩小一下, 指定 babel-loader 处理的范围:

{
   test: /\.js$/,
   use: ['babel-loader'],
   include: path.join(__dirname, 'app')
}