包含部分的ejs webpack4包含部分意外失败时出现意外标识符

时间:2018-07-21 16:16:51

标签: templates include ejs webpack-4

我在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搜索类似的已报告问题,但在我的案例中没有一个起作用

0 个答案:

没有答案