We implemented push notifications using FCM in chrome and firefox and it worked fine, but Safari doesn\'t support Service Workers which is mandatory for FCM.
Did any
Safari still does not support Web Push API, thus Firebase Cloud Messaging service.
Here is supported browsers in Firebase: https://firebase.google.com/support/guides/environments_js-sdk#browsers
I'd suggest using .isSupported() instead of other solutions.
if (firebase.messaging.isSupported())
const messaging = firebase.messaging();
}
See the documentation for details on .isSupported().