Skip to content Skip to sidebar Skip to footer

Typeerror: Cannot Read Property 'length' Of Undefined - Firebase

I am trying to connect to Firebase. Code from firebase.js: import * as firebase from 'firebase/compat/app'; const firebaseConfig = { apiKey: '***', authDomain: '***', projec

Solution 1:

You're missing imports for Firestore (as the error mentions) and Authentication.

import * as firebase from"firebase/compat/app";
import'firebase/compat/auth';
import'firebase/compat/firestore';

Also see the documentation on updating imports to v9 compat.

Solution 2:

Post a Comment for "Typeerror: Cannot Read Property 'length' Of Undefined - Firebase"