Created
September 17, 2023 17:08
-
-
Save YonatanKra/39253b5b512d50ad579a967fe12bf544 to your computer and use it in GitHub Desktop.
Tauri-Demo: firebase SDK config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 | |
const firebaseConfig = { | |
apiKey: "*****************************", | |
authDomain: "Your-Project-ID.firebaseapp.com", | |
projectId: "Your-Project-ID", | |
storageBucket: "Your-Project-ID.appspot.com", | |
messagingSenderId: "809093486114", | |
appId: "1:809093486114:web:3cb18ef89082688cc01c7b" | |
}; | |
// Initialize Firebase | |
const app = initializeApp(firebaseConfig); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment