I'm uploading images to firebase storage from my react app. The firebase config
const firebaseConfig = {
apiKey: "<apiKey>",
authDomain: "<authDomain>",
databaseURL: "<databaseURL>",
projectId: "<projectId>",
storageBucket: "<storageBucket>",
messagingSenderId: "<messagingSenderId>",
appId: "<appId>",
measurementId: "<measurementId>"
};
is actually added on the front end (React) in the src folder as guided by most tutorials. Is it safe to deploy it like this? Won't the users be able to gain access to this firebase config file?