22 lines
887 B
TypeScript
22 lines
887 B
TypeScript
import { initializeApp } from 'firebase/app'
|
|
import { getAuth, GoogleAuthProvider } from 'firebase/auth'
|
|
import { getMessaging, isSupported } from 'firebase/messaging'
|
|
|
|
const firebaseConfig = {
|
|
apiKey: import.meta.env.VITE_FIREBASE_API_KEY,
|
|
authDomain: import.meta.env.VITE_FIREBASE_AUTH_DOMAIN,
|
|
projectId: import.meta.env.VITE_FIREBASE_PROJECT_ID,
|
|
storageBucket: import.meta.env.VITE_FIREBASE_STORAGE_BUCKET,
|
|
messagingSenderId: import.meta.env.VITE_FIREBASE_MESSAGING_SENDER_ID,
|
|
appId: import.meta.env.VITE_FIREBASE_APP_ID,
|
|
}
|
|
|
|
const app = initializeApp(firebaseConfig)
|
|
|
|
// Google Auth initialization
|
|
export const auth = getAuth(app)
|
|
export const googleProvider = new GoogleAuthProvider()
|
|
|
|
// FCM Messaging — resolves to null in unsupported browsers (e.g. Firefox, older Safari)
|
|
export const messagingPromise = isSupported().then((yes) => (yes ? getMessaging(app) : null))
|