byteshiva / meetups-inspire

Meetup Inspire
https://byteshiva.github.io/meetups-inspire/
Apache License 2.0
1 stars 0 forks source link

development build of the Firebase JS SDK #1

Open byteshiva opened 6 years ago

byteshiva commented 6 years ago

It looks like you're using the development build of the Firebase JS SDK.

When deploying Firebase apps to production, it is advisable to only import the individual SDK components you intend to use.

For the module builds, these are available in the following manner (replace with the name of a component - i.e. auth, database, etc):

CommonJS Modules: const firebase = require('firebase/app'); require('firebase/'); ES Modules: import firebase from 'firebase/app'; import 'firebase/';