When I try to initialize Firebase Cloud Firestore, I ran into the following error:
Uncaught TypeError: WEBPACK_IMPORTED_MODULE_0_firebase
I found a useful comment in Github by alclimb
he mentioned about firebase analytics won't work in Node.js, because it meant to be used with a browser (this is mention in the official documentation)
add this script
you can read more on the official docs
https://firebase.google.com/docs/firestore/quickstart#set_up_your_development_environment
import { firebase } from '@firebase/app';
import '@firebase/firestore'
If you're using authentication as well
import '@firebase/auth';