在html页面使用ejs模板语言获取webpack传过来的参数时报错:
写法:
<title><%= HtmlWebpackPlugin.options.title %></title>
报错信息:
ERROR in Template execution failed: ReferenceError: HtmlWebpackPlugin is not defined
需要使用小写 htmlWebpackPlugin
HtmlWebpackPlugin 查看一下有没有定义, 例如:var HtmlWebpackPlugin = require(‘html-webpack-plugin’);