it's my first time using Firebase. I deployed my angular project with the Firebase CLI, but when i navigate to the specified domain, i only see
Welcome
Firebase Hosting Setup Complete
You're seeing this because you've successfully setup Firebase Hosting.
Now it's time to go build something extraordinary!
Here's my process to deploy:
firebase login
✔ Success! Logged in as [...]
firebase init
select Hosting, select project, chose 'dist' as public dir
✔ Firebase initialization complete!
ng build --prod
firebase deploy
✔ Deploy complete!
This is now over 60 minutes ago, and i can't figure out why it's not online. Is 60 minutes not enough time for firebase? Can anyone share his experience or give me a hint what could be the reason why it's not online?
Thank you in advance
dist
folder. After your build, is there anindex.html
in the dist root or is it in another subfolder likedist/your-project-name/index.html
? – Geridist
-directory:index.html
andmy-project-name
-folder. Themy-project-name
-folder also has anindex.html
inside, so i tried specifyingdist/my-project-name/
as public directory, but still the same problem – Recondite