Answers for "Firebase deploy error message with an empty firebase.json"

1

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"
      }
    ]
  }
}
Posted by: Guest on October-20-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language