Skip to content

Instantly share code, notes, and snippets.

@YonatanKra
Created September 17, 2023 17:08
Show Gist options
  • Save YonatanKra/39253b5b512d50ad579a967fe12bf544 to your computer and use it in GitHub Desktop.
Save YonatanKra/39253b5b512d50ad579a967fe12bf544 to your computer and use it in GitHub Desktop.
Tauri-Demo: firebase SDK config
// 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