Adam Teodoro
Adam Teodoro
Firebug
"firebase": "^8.2.2", On save image in storage: My code: ``` import { AngularFireStorage } from '@angular/fire/storage'; constructor( private fireStorage: AngularFireStorage ) { } saveIMG(img: File, imgPath: string) { return this.fireStorage.ref(imgPath)...
The rule that use resource.data is not working to angularfire V9
É chato estudar isso e amanhã a google mudar a sintaxe das libs e eu ter que estudar tudo novamente, acho melhor repensar sobre a cultura das empresas que geram...
please help me to found the environment configuration corretly, the firebase documentation, it's very confuse, have an repository for this ?
Github documentation page: https://github.com/firebase/snippets-web/blob/467eaa165dcbd9b3ab15711e76fa52237ba37f8b/auth/auth-state-persistence.js#L1-L27 Firebase documentation page: https://firebase.google.com/docs/auth/web/auth-state-persistence?hl=pt-br#web_1 **wrong imports: ❌** ``` import firebase from "firebase/app"; import "firebase/auth"; ``` **correctly imports: ✅** ``` import firebase from "firebase/compat/app"; // Or the...