Skip to content Skip to sidebar Skip to footer

Firebase-Admin, Importing It To React Application Throws Module Not Found Error

I'm developming simple React application which uses firebase admin. I have generated react application by using create react app. Then I have installed firebase-admin by using this

Solution 1:

Admin SDKs cannot be used in client-side environments. That includes web browsers. Admin SDKs can and should only be used in privileged server environments owned or managed by the developers of a Firebase app. You should use the Firebase web SDK in your React app.


Post a Comment for "Firebase-Admin, Importing It To React Application Throws Module Not Found Error"