Мне нужно внедрить систему уведомлений с этим кодом:
firebase.initializeApp(firebaseConfig);
firebase.analytics();
const messaging = firebase.messaging();
messaging.requestPermission().then(function () {
console.log("permiso concedido");
return messaging.getToken();
}).catch(function (err) {
console.log("permiso denegado ",err);
});
messaging.onMessage(function(payload){
console.log(payload);
});
, но я получаю этот код ошибки:
FirebaseError: "Messaging: We are unable to register the default service worker. ServiceWorker script at http://localhost/firebase-messaging-sw.js for scope http://localhost/firebase-cloud-messaging-push-scope encountered an error during installation. (messaging/failed-service-worker-registration)."
Почему?