12. 清理旧打包文件插件
安装
npm install clean-webpack-plugin --save-dev配置
const {CleanWebpackPlugin}=require('clean-webpack-plugin');
module.exports={
plugins=[
new CleanWebpackPlugin()
]
}使用
Last updated
Was this helpful?
npm install clean-webpack-plugin --save-devconst {CleanWebpackPlugin}=require('clean-webpack-plugin');
module.exports={
plugins=[
new CleanWebpackPlugin()
]
}Last updated
Was this helpful?
Was this helpful?