Files
workavia-mail-front/web/firebase-messaging-sw.js
T
dab246 e0244f38c2 TF-1802 Fix fcm broken on web
(cherry picked from commit a5c88da70482ff9dfad53b2c3582ec860ca237dc)
2023-06-05 11:02:20 +07:00

14 lines
581 B
JavaScript

importScripts("https://www.gstatic.com/firebasejs/9.10.0/firebase-app-compat.js");
importScripts("https://www.gstatic.com/firebasejs/9.10.0/firebase-messaging-compat.js");
// Initialize the Firebase app in the service worker by passing in the messagingSenderId.
firebase.initializeApp({
apiKey: "...",
authDomain: "...",
databaseURL: "...",
projectId: "...",
storageBucket: "...",
messagingSenderId: "...",
appId: "...",
});
// Retrieve an instance of Firebase Messaging so that it can handle background messages.
const messaging = firebase.messaging();