Is there an efficient way in Phoenix to serve the CSS file individually instead of combining them? I find it inefficient to send all the unnecessary CSS code from other pages when only one page is being viewed. This can also result in style conflicts if not managed properly.
Directory Structure of Static Folder:
static
- css
-- list.css
-- detail.css
Upon running "mix phoenix.server," I noticed that my list.html page is receiving an "app.css" file containing styles from both list.css and detail.css. I would prefer to only deliver the styles from list.css for the list.html page to avoid sending excess data.