这是错误 错误:子编译失败: 模块解析失败:意外字符'�'(1:0] 您可能需要适当的加载程序来处理此文件类型。 (此二进制文件省略了源代码): 语法错误:意外字符'...'(1:0)
这是配置文件
const HtmlWebPackPlugin = require("html-webpack-plugin");
module.exports = {
module: {
rules:[
{
test: /\.html$/,
use:[
{
loader:"html-loader",
options:{minimize:true}
},
]
},
]
},
plugins: [
new HtmlWebPackPlugin({
template:"./src/index.html",
filename:"./index.html"
}),
]
}