For some reason, chrome keeps loading index.html from cache. In network tab of developers tool, I get 200 Ok (loaded from disk cache). When I disable cache or clear cache, then it loads fresh copy of index.html. But the issue doesn't happen in other browsers (e.g. edge).What am I doing wrong? How do I force chrome not to use cache at all and always fetch fresh copy just like it would when I hit F5? Here's my html.
<head>
<meta http-equiv="cache-control" content="no-cache, no-store, must-revalidate"/>
<meta http-equiv="Expires" content="0"/>
<meta http-equiv="Pragma" content="no-cache"/>
</head>