Search code examples
firebasefirebase-hosting

My website is not showing after deploy in firebase how to solve this


I have complete all process

  1. Firebase Login
  2. Firebase init
  3. Firebase deploy

now finally i got a link https://testing-37553.firebaseapp.com/ but my website not showing so what should i have to do. enter image description here


Solution

  • What you are seeing is the default index.html page that is created by the CLI when you create a new project.

    You should adapt this index.html page as you whish (i.e. by modifying the HTML/CSS/JS code of this page, in your local project directory) and re-deploy the project with

    firebase deploy
    

    or

    firebase deploy --only hosting