2019-10-14 18:23:29 +00:00
|
|
|
import { addSuccessHandler } from 'ember-service-worker/service-worker-registration';
|
|
|
|
|
2021-12-17 03:44:29 +00:00
|
|
|
addSuccessHandler(function (registration) {
|
2019-10-14 18:23:29 +00:00
|
|
|
// attempt to unregister the service worker on unload because we're not doing any sort of caching
|
2021-12-17 03:44:29 +00:00
|
|
|
window.addEventListener('unload', function () {
|
2019-10-14 18:23:29 +00:00
|
|
|
registration.unregister();
|
|
|
|
});
|
|
|
|
});
|