This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
FoodLoop-Web/src/firebase-messaging-sw.js

21 lines
699 B
JavaScript
Raw Normal View History

2021-03-21 14:46:26 +00:00
/**
* A Web Worker for sending and receiving messages using the Firebase Cloud
* Messaging (FCM) service.
*/
2020-12-01 11:52:10 +00:00
importScripts('https://www.gstatic.com/firebasejs/8.0.0/firebase-app.js');
importScripts('https://www.gstatic.com/firebasejs/8.0.0/firebase-messaging.js');
firebase.initializeApp({
apiKey: "AIzaSyB-iIcMH_eyfFT043_8pSGX3YYugpjm3Fg",
authDomain: "localspend-47012.firebaseapp.com",
databaseURL: "https://localspend-47012.firebaseio.com",
projectId: "localspend-47012",
storageBucket: "localspend-47012.appspot.com",
messagingSenderId: "469562689216",
appId: "1:469562689216:web:567a20c57c123f17354f25",
measurementId: "G-KL7BGT2EW0"
2020-12-01 11:52:10 +00:00
});
const messaging = firebase.messaging();