Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"Firebase Hosting Setup Complete" after deploy

I've been trying to fix this issue for 2 days now and I couldn't find a viable solution yet :(

I am deploying my React Single-Page App onto Firebase Hosting but I get this famous page "Firebase Hosting Setup Complete" after deploy. I've tried to deploy from the index.html in the public and build folder but none of them works. It looks like I don't have a firebase.json nor a firebaserc file created in my project after init. Could it be the reason?

Here are screenshots of the setup : enter image description here enter image description here

like image 570
Maxime Crtgn Avatar asked Aug 07 '26 08:08

Maxime Crtgn


1 Answers

Please make sure project build done correctly.

Building when firebase init sometimes don't work correctly.

So run build command (eg: npm run build) mannualy before firebase deploy

like image 194
Bijin Kandengalath Avatar answered Aug 10 '26 12:08

Bijin Kandengalath