index.html第一行第一处 <!DOCTYPE... 就报错Unexpected Token
原因是没有安装html-loader
命令行输入npm i -D html-loader
webpack.config.js中加入
module: {
rules: [{
test: /\.html$/,
use: [ {
loader: 'html-loader',
options: {
minimize: true
}
}],
}]
}
即可