angularfire
angularfire copied to clipboard
Angular17 Standalone Application with firebase throws error after compiling
Version info
Angular: 17.0.8 Firebase: 10.7.1 AngularFire: 17.0.0
How to reproduce these conditions
Failing test unit, Stackblitz demonstrating the problem
Steps to set up and reproduce
Simple standalone project and configure with importProvidersFrom([ provideFirebaseApp(() => initializeApp(environment.firebaseConfig)), provideFirestore(() => getFirestore()), provideAuth(() => getAuth()) ]),
in app.config.ts.
Then run "ng serve" and after compile you get:
Error: Module not found: Error: Package path ./app/firebase is not exported from package
Sample data and security rules
Debug output
** Errors in the JavaScript console **
** Output from firebase.database().enableLogging(true); **
Nothing ... the error appears after "ng serve"
Expected behavior
No error after compile
Actual behavior
After compile i get the following error:
Error: Module not found: Error: Package path ./app/firebase is not exported from package
This issue does not seem to follow the issue template. Make sure you provide all the required information.
Working if initializeApp(), getAuth() and getFirestore() is used from firestore directly and not imported from angular/fire. Perhaps a cleanup should be done.