You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OfflinePluginRuntime.install({
onUpdating: () => {
console.log('SW Event:', 'onUpdating');
},
onUpdateReady: () => {
console.log('SW Event:', 'onUpdateReady');
// Tells to new SW to take control immediately
OfflinePluginRuntime.applyUpdate();
},
onUpdated: () => {
console.log('SW Event:', 'onUpdated');
// Reload the webpage to load into the new version
window.location.reload();
},
onUpdateFailed: () => {
console.log('SW Event:', 'onUpdateFailed');
}
});
when opening the app in another tab it indeed updating the chunks and im getting the logs in my primary tab. but im not getting any auto updating
The text was updated successfully, but these errors were encountered:
Hey,
For some reason auto updating doesn't working for me. after deploying a new version.
this is my configuration:
And this is what I entered in my index.ts file:
when opening the app in another tab it indeed updating the chunks and im getting the logs in my primary tab. but im not getting any auto updating
The text was updated successfully, but these errors were encountered: