Cam Remesz

Results 3 comments of Cam Remesz

Following [the docs](https://github.com/angular/angularfire/blob/master/README.md#developer-guide) helped me. ``` "@angular/core": "^16.2.11", "@angular/fire": "^16.0.0", "firebase": "^9.12.1", ``` For the sake of brevity... ``` import { GoogleAuthProvider } from '@angular/fire/auth'; etc... this.afAuth.signInWithPopup(new GoogleAuthProvider()) ```

fwiw Hitting this in an Angular 2 project as well moving from 14.19.1 to 5.28.0. Regenerating the package-lock and node_modules had no effect

My solve was using the steps laid out in this blog post for any Angular projects out there [https://stackademic.com/blog/how-to-embed-swagger-ui-into-angular](https://stackademic.com/blog/how-to-embed-swagger-ui-into-angular). Looks like I had outdated imports `SwaggerUI` -> `SwaggerUIBundle` among a...