我在webpack4下使用ejs进行模板制作,并且定义了一个像这样的入口点
new HtmlWebpackPlugin({
template: './src/views/index.ejs',
debug: true,
files: {
css: ['main.css'],
js : ['bundle.js']
},
})
现在在index.ejs
中,我尝试包括如下部分内容
<% include partials/footer %>
但失败,并出现以下错误
ERROR in ./src/views/index.ejs (./node_modules/html-webpack-plugin/lib/loader.js!./src/views/index.ejs)
Module build failed (from ./node_modules/html-webpack-plugin/lib/loader.js):
SyntaxError: Unexpected identifier
我正尝试通过Google搜索类似的已报告问题,但在我的案例中没有一个起作用