共计 375 个字符,预计需要花费 1 分钟才能阅读完成。
参考来源:https://stackoverflow.com/que…
webpack 配置,将 index.js 变为 index.ejs 模板
const HtmlWebpackPlugin = require(‘html-webpack-plugin’)
module.exports = {
entry: ‘index.js’,
output: {
path: __dirname + ‘/dist’,
filename: ‘index_bundle.js’
},
plugins: [
new HtmlWebpackPlugin({
filename: __dirname + ‘/dist/index.ejs’,
})
]
}
webpack 的入口文件(index.js) 添加
__webpack_nonce__ = ‘<%=nonce%>’;
服务端程序,遇到 index.js 的请求,就替换掉 <%=nonce%>
正文完