You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I followed example README.md exactly, and result was the example didn't work, with a runtime JS error:
Uncaught TypeError: Cannot read properties of undefined (reading 'sdkConfig')
at Object.<anonymous> (App.jsx:10:58)
Cause of the above is npm run build produced firebase-config.json that contained an error (with misleading message, firebase/firebase-tools/issues/4007) because I hadn't created a "web" app yet in the Firebase project.
The readme, since it has readers create a new Firebase project, should include a firebase apps:create invocation, to ensure there's a web app available. Could also mention using firebase apps:list, in case the Firebase project is not new, already has 2 apps, which I presume causes the same error(?) - I can imagine people trying to use most of these steps with an existing project.
The text was updated successfully, but these errors were encountered:
I followed example README.md exactly, and result was the example didn't work, with a runtime JS error:
Cause of the above is
npm run build
producedfirebase-config.json
that contained an error (with misleading message, firebase/firebase-tools/issues/4007) because I hadn't created a "web" app yet in the Firebase project.The readme, since it has readers create a new Firebase project, should include a
firebase apps:create
invocation, to ensure there's a web app available. Could also mention usingfirebase apps:list
, in case the Firebase project is not new, already has 2 apps, which I presume causes the same error(?) - I can imagine people trying to use most of these steps with an existing project.The text was updated successfully, but these errors were encountered: