You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Angular CLI: 6.0.3
Node: 10.1.0
OS: darwin x64
Angular: 6.0.2
Repro steps
include: NgxAuthFirebaseUIModule.forRoot(environment.firebaseTitleIXConfig) in app.module.ts imports section.
ng serve
The log given by the failure
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):
Bug Report or Feature Request (mark with an
x
)OS and Version?
macOS High Sierra
Versions
Angular CLI: 6.0.3
Node: 10.1.0
OS: darwin x64
Angular: 6.0.2
Repro steps
The log given by the failure
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/';
Desired functionality
no warning.
Mention any other details that might be useful
The text was updated successfully, but these errors were encountered: