Prevent caching of html files
According to mdn.io docs, the no-store header should prevent caching of the page entirely: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control
Surprisingly, people on Stackoverflow tend to use no-store together with no-cache, must-revalidate, and max-age=0. Not sure why.