https://school-planner.glitch.me/
Title says all. No idea how to use Firebase. It keeps saying ‘firebase not deined’.
https://school-planner.glitch.me/
Title says all. No idea how to use Firebase. It keeps saying ‘firebase not deined’.
Lots of tutorials and explainers on the googles, so I’d say step one is to just do some searching to find others asking the same or similar questions on the web, stackoverflow, etc?
Or just hitting up the Firebase website and running through their tutorial on how to use it, that should also get you to a working project.
firebase is pretty complicated to use and secure. I would recommend you checking out Supabase - it also has a pretty generous free tier
i’m unfamiliar with firebase. (I suck at databases lol)
I’ve tried so many tutorials still no help
problem with the script tags not being in module mode?
Probably. Try replacing:
<script src="https://www.gstatic.com/firebasejs/11.0.2/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/11.0.2/firebase-analytics.js"></script>
with:
<script src="https://www.gstatic.com/firebasejs/11.0.2/firebase-app.js" type="module"></script>
<script src="https://www.gstatic.com/firebasejs/11.0.2/firebase-analytics.js" type="module"></script>