I don\'t know if this is related to the recent bump of firebase-tools to 6.0 or not. But I\'m unable to deploy my files to a hosting project.
The output after I type fi
I had the same problem
In my case I fixed it by adding on the firebase.json a dot before /dist on public tag "public": "./dist/my-app-name",
Example of my json
{
"hosting": {
"public": "./dist/my-app-name",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}