Milly00

Results 3 comments of Milly00

Hi, I had same problem, I solved adding AngularFireModule.initializeApp(environment.firebaseConfig) into imports of AppModule import { AngularFireModule } from '@angular/fire/compat'; import { environment } from 'src/environments/environment'; @NgModule({ declarations: [AppComponent], imports: [...

Hi @ruthmazango, You have the firebaseConfig in environment.prod.ts ? Check the name with which you added the firebase configuration. In my case, I have it as: `export const environment =...

In my case, since I am not using ssr, I disable server side rendering in angular.json file in build options: `"prerender": false, "ssr": false` Im using Angular v17