File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed
angularfire-start/src/app Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -11,14 +11,12 @@ import { provideRouter } from '@angular/router';
1111
1212export const appConfig : ApplicationConfig = {
1313 providers : [
14- importProvidersFrom (
15- provideFirebaseApp ( ( ) => initializeApp ( environment . firebase ) ) ,
16- provideFirestore ( ( ) => getFirestore ( ) ) ,
17- provideAuth ( ( ) => getAuth ( ) ) ,
18- provideFunctions ( ( ) => getFunctions ( ) ) ,
19- provideStorage ( ( ) => getStorage ( ) ) ,
20- provideMessaging ( ( ) => getMessaging ( ) )
21- ) ,
22- provideRouter ( routes )
14+ provideRouter ( routes ) ,
15+ provideFirebaseApp ( ( ) => initializeApp ( environment . firebase ) ) ,
16+ provideFirestore ( ( ) => getFirestore ( ) ) ,
17+ provideAuth ( ( ) => getAuth ( ) ) ,
18+ provideFunctions ( ( ) => getFunctions ( ) ) ,
19+ provideStorage ( ( ) => getStorage ( ) ) ,
20+ provideMessaging ( ( ) => getMessaging ( ) )
2321 ] ,
2422} ;
You can’t perform that action at this time.
0 commit comments