参考来源:
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%>
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。