I am trying to update a react.js app that was created with facebook's create-react-app
and that uses a registered service worker to a Next.js
app to enjoy Server-Side Rendering but doesn't use a service worker.
When pushing in production, my previous users are stuck with the cached version of the old app.
Question: How can I make this update successful? All the relevant resources I could find were about updating an app that keeps a service worker..
Thank you!