Firebase deploy error message with an empty firebase.json
//Firebase deploy error message with an empty firebase.json
// firebase.jon error
//Solved Method> replace this text in Firebase.json
{
"hosting": {
"public": "build",
"ignore": [
"firebase.json",
"/.",
"/node_modules/*"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}