我想動態地插入bundle.js而不執行EJS模板,但我得到下面的錯誤。有沒有辦法只插入JS而不執行EJS模板?html-webpack-plugin - 如何插入webpack bundle.js而不執行EJS模板
ERROR in Template execution failed: ReferenceError: description is not defined
ERROR in ReferenceError: description is not defined
我使用節點實際渲染的模板,我只是想包文件可以動態地插入在template.ejs
res.status(200).render('template',
{
description: description,
title:title
});
的WebPack配置:
output: {
path: path.join(__dirname, 'dist'),
filename: "output.[hash].bundle.js",
publicPath: '/'
},
new HtmlWebpackPlugin({
inject: 'body',
template: 'views/template.ejs'
}),
模板。 ejs
<!DOCTYPE html>
<html lang="en" class="ddhub-site">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="format-detection" content="telephone=no">
<meta description=<%=description%>/>
<title> <%= title %> </title>
</head>
<body></body>
</html>