The project is configured as a Progressive Web App (PWA) by default, which uses service workers for offline-first capabilities. If you want to disable this behavior:
To disable caching before your first production deployment:
Remove the call to registerServiceWorker() from src/index.js.
To disable caching for existing users:
If service workers are already active in your production environment, you must unregister them. In src/index.js, modify the service worker import and call unregister() instead of registerServiceWorker():
import { unregister } from './registerServiceWorker';
// Call unregister() instead of registerServiceWorker()
Note: It may take up to 24 hours for the cache to be invalidated depending on how /service-worker.js is served.
import { unregister } from './registerServiceWorker';