之前运行dist下的js,都是手动把index.html拷贝过去的,每次把dist文件夹删除,都需要将index.html拷贝进去,这样很麻烦,我们在webpack官方插件中找到HtmlWebpackPlugin module.exports = { /** * 打包模式,不配置会警告,但底层还是会去配置默认的,就是production * production: 压缩模式,被压缩的代码 * development: 开发模式,不压缩的代码 * */ mode: 'development', /…