trying to use firebase (google) analytics for webapps as described here
Tried to repro on stackblitz but it doesn't seem to work with firebase 7.0.0
import * as firebase from "firebase";
firebase.initializeApp({...});
const analytics = firebase.analytics();
I couldn't figure out how to label this issue, so I've labeled it for a human to triage. Hang tight.
oddly enough after updating to 7.0.0 the analytics folder appears to missing from the package:

Thanks for reporting it! I made a quick fix and linked the PR here.
As a workaround (also the best practice), please import Firebase SDKs individually:
import * as firebase from 'firebase/app';
import 'firebase/analytics';
import 'firebase/auth'
...
It has been fixed in [email protected]
thanks!
Most helpful comment
Thanks for reporting it! I made a quick fix and linked the PR here.
As a workaround (also the best practice), please import Firebase SDKs individually: