I need to create a standalone HTML file (so no <script src="main.js"></script> tags.
I am using some node_modules and in development, writing it in separate files, but I want to be able to create a webpack.config.js that allows me to directly put the javascript into .html file. I know of HTMLWepackPlugin, but that only create a script tag that includes a source, not actually put the HTML in the file (even with inject: true).
Is there a workaround or another Wepack plugin?