Skip to content

Instantly share code, notes, and snippets.

@Cogentx
Created March 8, 2022 23:10
Show Gist options
  • Save Cogentx/f87e2179f19102c9e10ebc0a9e007b7a to your computer and use it in GitHub Desktop.
Save Cogentx/f87e2179f19102c9e10ebc0a9e007b7a to your computer and use it in GitHub Desktop.
Firebase v9 - Initialize in React | Next.js
import { initializeApp } from 'firebase/app';
import { getFirestore } from 'firebase/firestore';
import { getStorage } from 'firebase/storage';
const firebaseConfig = {
/* Firebase config goes here */
};
const app = initializeApp(firebaseConfig);
const db = getFirestore(app);
const storage = getStorage(app);
export { db, storage };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment