fetch(url, {cache: 'no-cache'})
Cache Options: https://developer.mozilla.org/en-US/docs/Web/API/Request/cache
default
: browser will check cache for fresh content (no guarantee for latest from server)no-store
: always fetch from server, never store the result into cachereload
: get latest from server, store the result into cacheno-cache
: If cache available, make conditional request to server to check if content has changed (if content has changed, download content and update cache)force-cache
: always use cache if availableonly-if-cached
: return if cahce is available, else return504 Gateway timeout