11 lines
365 B
JavaScript
11 lines
365 B
JavaScript
|
|
if ('serviceWorker' in navigator) {
|
|
window.addEventListener('load', () => {
|
|
navigator.serviceWorker.register('/sw.js').then(registration => {
|
|
console.log('ServiceWorker registration successful with scope: ', registration.scope);
|
|
}, err => {
|
|
console.log('ServiceWorker registration failed: ', err);
|
|
});
|
|
});
|
|
}
|