Hi I try to execute the basic configuration with fire base but has the error (SystemJS) Cannot read property 'FacebookAuthProvider' of undefined
my systemjs.config.js has this values to firebase y saw in some parts and talk about put the firebas-web.js but that don't exist into the firebase 3.6.9
Version info
Angular:2.4.7
Firebase:3.6.9
AngularFire:2.0.0-beta.8
Hi I try to execute the basic configuration with fire base but has the error (SystemJS) Cannot read property 'FacebookAuthProvider' of undefined
my systemjs.config.js has this values to firebase y saw in some parts and talk about put the firebas-web.js but that don't exist into the firebase 3.6.9
firebase: 'npm:firebase/firebase.js', angularfire2: 'npm:angularfire2/bundles/angularfire2.umd.js',
my module code look like the next
import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { HttpModule } from '@angular/http'; import { FormsModule } from '@angular/forms'; import {AngularFireModule,AuthMethods} from 'angularfire2';
export const myFirebaseConfig = { apiKey: "my service key", authDomain: "xxxxxx", databaseURL: "xxxxx", storageBucket: "xxxx", messagingSenderId: "xxxx" };
const firebaseAuthConfig = { method: AuthMethods.Popup, remember: 'default' };
@NgModule( { imports: [BrowserModule, AppRoutingModule, HttpModule, FormsModule, AngularFireModule.initializeApp(myFirebaseConfig, firebaseAuthConfig)
}) export class AppModule { }.
please help me with a example or some thing that I can Use to fix these error.