webpack5+中清除打包目录

在5.20+以前清除打包目录需要饮用clean-webpack-plugin,之后就不需要了

直接在output里面配置即可

module.exports = {
  output: {
    clean: true
  },
};