Skip to content

Instantly share code, notes, and snippets.

@daubattu
Created August 11, 2020 05:11
Show Gist options
  • Save daubattu/7b812ef40396196c8c18a68147474f3c to your computer and use it in GitHub Desktop.
Save daubattu/7b812ef40396196c8c18a68147474f3c to your computer and use it in GitHub Desktop.
How to push notification in NuxtJS with Firebase Cloud Messaging
import * as firebase from 'firebase/app';
import 'firebase/messaging';
if (!firebase.apps.length) {
firebase.initializeApp({
apiKey: '',
projectId: '',
messagingSenderId: '',
appId: ''
});
}
export default firebase;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment