blob: 06630e6266ed31d3cd6e294a01f48420fc9afa64 [file] [log] [blame] [edit]
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import { addSuccessHandler } from 'ember-service-worker/service-worker-registration';
addSuccessHandler(function (registration) {
// attempt to unregister the service worker on unload because we're not doing any sort of caching
window.addEventListener('unload', function () {
registration.unregister();
});
});