As I began a new project, I decided to tweak the color settings in bootstrap.
During debugging in Visual Studio, everything appeared as intended.
However, after publishing the site for the first time on a server, I noticed that the color change I made in the bootstrap.css file was not reflecting. Even inspecting the element in Chrome revealed that it was still displaying the original bootstrap setting instead of my modifications.
When checking the network tab in Chrome, it indicated that much of this data was "cached from disk".
https://i.stack.imgur.com/HZaHB.png
I understand that it mentions being cached from disk, and while it may seem like a basic question, what's puzzling is that it's a brand new server with no prior cache history. Yet, it seems to be utilizing some form of "cached" CSS style instead of the one I just published?
In the network tab of Chrome's debug tool, under the bootstrap line mentioned above, it displays:
Cache-Control: public
Uncertain about the implications of this header in terms of loading the content.