How do you add an image into Firestore ? Is it the same thing as when you add any regular data into firestore or are you supposed to direct it a specific way to make it much feasible to fetch. I cannot seem to find any documentation that has to upload images into firestore.
I am currently using
const image = document.getElementById('image')
database.collection("users").add({
UsersImg: image
})