Does a developer tool exists what can include a HTML file into another one? For example:
image.html:
<img src="img/hero.jpg" alt="Hello World">
main.html:
<html>
<head>...</head>
<body>
<!-- some content -->
<%= include 'image.html' %>
<!-- some other content -->
</body>
</html>
The syntax is whatever, I think this is the EJS webpack loader's syntax, but this is an example.
I'm looking for this because html webpack's html-loader not working.
Good answer can be a working webpack.config.js
file or another developer tool too.