19 lines
No EOL
747 B
JavaScript
19 lines
No EOL
747 B
JavaScript
// Import the functions you need from the SDKs you need
|
|
import { initializeApp } from "firebase/app";
|
|
// TODO: Add SDKs for Firebase products that you want to use
|
|
// https://firebase.google.com/docs/web/setup#available-libraries
|
|
|
|
// Your web app's Firebase configuration
|
|
// For Firebase JS SDK v7.20.0 and later, measurementId is optional
|
|
const firebaseConfig = {
|
|
apiKey: process.env.NEXT_PUBLIC_FIREBASE_API_KEY,
|
|
authDomain: "scheduleme-a2570.firebaseapp.com",
|
|
projectId: "scheduleme-a2570",
|
|
storageBucket: "scheduleme-a2570.appspot.com",
|
|
messagingSenderId: "377723089628",
|
|
appId: "1:377723089628:web:d590bdd65b7b3ea07e7a19",
|
|
measurementId: "G-LL5TKZ1PJ4"
|
|
};
|
|
|
|
// Initialize Firebase
|
|
export const app = initializeApp(firebaseConfig); |