I am starting to use source maps for my SASS code for debugging in Chrome.
The way I understood it to work was that Chrome requested in the stylesheet resource and the .map resource, yet I only see the stylesheet showing up in the network tab.
I know it's there and I know it's working as I can see the extra information from the source map in the elements tab and sources tab.
I also know I don't explicitly need to see it in the network tab as it won't load if the user doesn't have the flag set in developer tools, but I expected to see it loaded as a normal request like everything else, since I imagine it gets loaded in like every other resource? I guess it's just peace of mind to be shown absolutely everything being loaded in. I'm trying to make a highly performant site and I don't really wan't to be in the dark about requests the browser is making!
So, is there any way to get source maps to show in the network tab?