The solution I found on this reddit thread seems to work.
Just hit Ctrl+Shift+R to reload the page without cache
Or hard-reloading the page programatically using JavaScript: (taken from this answer)
eraseCache(){
window.location = window.location.href+'?eraseCache=true';
}