I used ng add @angular/fire to add firebase to ionic angular 7 project. When I checked the package.json file I found only @angular/fire without firebase package and rxfire package. Also creating the ionic app generated standalone version of angular without the app.module.ts
Now I know that I need to add the providers in the component in the imports like
provideFirebaseApp(() => initializeApp(environment.firebase)),
provideFirestore(() => getFirestore())
but I need to know in which component