Firebase hosting does not show application?
There may be two reasons for this problem.
1st step:
Make sure your public folder (defined in your firebase.json) 'dist' containing index.html has not been changed by the firebase initialization command, if so, replace it with the original index.html project.
for reference (the distance is standard, but yours may differ)
{ "hosting": { "public": "dist"} }
2nd step:
Be sure to configure your base href in the index.html project
as
<base href="https://["YOUR FIREBASE PROJECT NAME"].firebaseapp.com/">
and other files included
<script type="text/javascript" src="https://["YOUR FIREBASE PROJECT NAME"].firebaseapp.com/runtime.a66f828dca56eeb90e02.js">
<script type="text/javascript" src="https://["YOUR FIREBASE PROJECT NAME"].firebaseapp.com/main.2eb2046276073df361f7.js">
3rd step of running the command - deploy Firebase
enjoy! ;)
source share