I want to be able to refresh the page every time someone opens it.
I need this because I have a web app (PWA) and iOS caches the state and it doesn't communicate with the browser unless you delete data and cookies from your phone, which of course you cannot tell the user to do that.
I want to be able to refresh every time the page is opened. Is there a way to accomplish this?
I tried just putting window.location.reload(true)
but this would only cause the page to load on a loop without being able to see the content once.