Skip to content

Instantly share code, notes, and snippets.

@daubattu
Created August 11, 2020 05:07
Show Gist options
  • Save daubattu/3bd218226015dfa664f3895ad82c27b0 to your computer and use it in GitHub Desktop.
Save daubattu/3bd218226015dfa664f3895ad82c27b0 to your computer and use it in GitHub Desktop.
How to push notification in NuxtJS with Firebase Cloud Messaging
importScripts('https://www.gstatic.com/firebasejs/7.17.1/firebase-app.js');
importScripts(
'https://www.gstatic.com/firebasejs/7.17.1/firebase-messaging.js'
);
firebase.initializeApp({
apiKey: '',
projectId: '',
messagingSenderId: '',
appId: ''
});
const messaging = firebase.messaging();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment