Say I have the following setup:
Page1.html
- Includes master.css, page1.css and page1.js
Page2.html
- Includes master.css, page2.css and page2.js
I have been told that merging the two js and additional css files would be better for caching? But wouldn't the separate files be cached as well? I don't see how this makes a difference (aside from maintainability maybe - personally I like the separation).
what is the most perform-ant and most sensible way to organize something like this?
Disclaimer:: Micro optimization is not the issue here - I would like to know what the best practices are before I begin my project so I do not have to revisit this later.