【发布时间】:2020-11-11 06:38:51
【问题描述】:
我对 webpack 很陌生,我的 webpack.config.js:
plugins: [
new HtmlWebpackPlugin({
hash: true,
templateParameters:{title: '[name].[contenthash]' },
inject: true,
}),
],
在我的 index.ejs 中:
<title><%= title %></title>
但在我的out/index.html中,标题只有:
<title>[name].[contenthash]</title>
期待:
<title>app.7472b25c2ed347463dbc</title>
我该如何解决?
【问题讨论】:
-
这能回答你的问题吗? Webpack compilation hash in client code
标签: javascript html webpack html-webpack-plugin