I created my application with webpack , combining all css into one file, all js into one file and one html for my SPA application.
When I do my testing with webpagetest, most of my problems are not downloading files, but downloading them as separate files.
html+css+js=index.html
How can I pack html, css and js into one index.html so that I can avoid the overhead on the page ?
Webpack or any webpack plugin is better since we already use it.
Thanks for any direction.
source
share