I need help with html-minimizer-webpack-plugin. Right now, when I write this:
<style>
.video__embed {
aspect-ratio: {video_width}/{video_height} !important;
padding-top: 0 !important;
}
</style>
minifier removes {video_width}/{video_height}!important; padding-top: 0 !important;, resulting in
<style>.video__embed{aspect-ratio:{};}</style>
How can I configure the plugin to keep those values intact, but still minified?