Kundan Agrawal
Kundan Agrawal

Reputation: 33

Firebase Deployed successfully but still website is not rendering

firebase is deployed successfully but when i click on the generated URL Website is not rendered and i get these errors in the console-

Failed to load resource: the server responded with a status of 400 () /%PUBLIC_URL%/favicon.ico:1 Failed to load resource: the server responded with a status of 400 () :manifest.json:1 Manifest: Line: 1, column: 5, Unexpected data after root element. :manifest.json:1
Failed to load resource: the server responded with a status of 400 () :manifest.json:1

Upvotes: 0

Views: 552

Answers (1)

esafresa
esafresa

Reputation: 600

The error is saying the mentioned assets are not located on your firebase hosting.

My guess is either...

You didn't build, in which case run...

npm run-script build; firebase deploy --only hosting

Or you don't have the assets located in your folder. For me at least, my file structure looks like this

/public/
index.html
manifest.json
/assets/
    /icon/
        favicon.png

Upvotes: 0

Related Questions