I use Webpack along with the plugin html-webpack-plugin
. Based on an environment variable, I want to inject a tag into th
Try html-webpack-tags-plugin
new HtmlWebpackTagsPlugin({
metas: [{
path: 'img/logo.png',
attributes: {
property: 'og:image'
}
},{
attributes: {
property: 'og:image:type',
content: "image/png"
}
},{
attributes: {
property: 'og:image:width',
content: "200"
}
},{
attributes: {
property: 'og:image:height',
content: "200"
}
},]
}),