13
How to add hard-coded website to square space?
(beehaw.org)
All things programming and coding related. Subcommunity of Technology.
This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.
You'll want to create a new firebase project, install the firebase CLI on your computer and then use the CLI to: login to firebase, select the project you created, and then using the CLI run
firebase deploy
wherever your code is. That should use firebase "hosting" to serve your static files.I find Google Cloud's documentation extremely confusing (including firebase), so you're not alone on that front. Took a lot of searching & troubleshooting to finally get my setup working as I intended.