pwa config #242

Merged
floatingghost merged 4 commits from pwa into develop 2022-12-02 12:01:43 +00:00
Showing only changes of commit e132814478 - Show all commits

View file

@ -51,6 +51,17 @@ const persistedStateOptions = {
}; };
(async () => { (async () => {
if ('serviceWorker' in navigator) {
// declaring scope manually
navigator.serviceWorker.register('/sw.js', {scope: '/'}).then((registration) => {
console.log('Service worker registration succeeded:', registration);
}, /*catch*/ (error) => {
console.error(`Service worker registration failed: ${error}`);
});
} else {
console.error('Service workers are not supported.');
}
let storageError = false let storageError = false
const plugins = [pushNotifications] const plugins = [pushNotifications]
try { try {