使用 HtmlWebpackPlugin
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
plugins: [new HtmlWebpackPlugin()]
};
终端得到警告 Entrypoint undefined = index.html
// 环境
"webpack": "^4.12.0",
"html-webpack-plugin": "^3.2.0",
无论 dist
文件夹下是否有 index.html
文件
我也遇到lz的问题,我查了issue,上面作者是这样回答的,你可以用html-webpack-plugin 3.0.7 版本解决这样的问题,但是作者说会出现其他大量error,所以我也没有好的办法
https://github.com/jantimon/h...