21 / 07 / 18
每次构建的时候不会清理目录,造成构建的输出目录
output
文件越来越多
npm script
清理构建目录rm -rf ./dist && webpack // 或者 rimraf ./dist && webpack
clean-webpack-plugin
npm i clean-webpack-plugin -D
webpack.config.js
module.exports = { plugins: [ new CleanWebpackPlugin() ] }