Resolve image reference in the style
attribute
For example, there is the source image file defined in the style
attribute as the background of the div
tag:
<div style="background-image: url(./pic1.png);"></div>
The source image file can be a file relative to the template or you can use a webpack alias to the image directory.
noteThis is BAD practice. Use it only in special cases. The background image should be defined in CSS.
By default, the style
attribute is not parsed and therefore needs to be configured:
new HtmlBundlerPlugin({
entry: {
index: './src/index.html',
},
loaderOptions: {
sources: [
{
tag: 'div', // specify the tag where should be parsed style
attributes: ['style'], // specify the style attribute
},
],
},
}),
The plugin resolves the url()
value and replaces it in the generated HTML with the output filename:
<div style="background-image: url(assets/img/pic1.d4711676.png);"></div>