For doing firebase hosting:-
created dist folder inside angular project by using "ng build --prod".
firebase login
3.
- Created project in console.firebase.google.com
- firebase init
- Choose firebase CLI features as hosting.
- same project name which i created earlier select here same.
- Enter public directory as dist.
- Say yes for spa.
- say no for overriding index.html
And then
firebase deploy
it provides me url:- https://projectname.firebaseapp.com/
firebase open
But when i opened the hosting url then "welcome page confirming --Firebase Hosting Setup Complete" is displaying.
Please suggest where I am doing wrong? and how will my project's index page will start displaying.
Note :- I am not using firebase database so, i select only hosting while initializing.