Is there a way webpack can process my HTML tags such as
<link rel="stylesheet" href="./style.css">
<script src="./script.js"></script>
And bundle them into
<style>
//contents of minified style.css
</style>
<script>
//bundled and minified script.js
</script>
So I can serve a single file from my servers? I managed to do this with the Processhtml grunt plugin, but I'm not using grunt as build system on this project.
GULPits a built system for web applications.