Answers for "firebase deploy hosting change directory"

1

firebase deploy hosting change directory

{ 
"database": {
    "rules": "database.rules.json"
  },
  "hosting": {
    "public": "public", <------ This points to directory
    "ignore": [
      "firebase.json",
      "**/.*",
      "**/node_modules/**"
    ],
    "rewrites": [
      {
        "source": "**",
        "destination": "/index.html"
      }
    ]
  }
}
Posted by: Guest on July-27-2021

Code answers related to "firebase deploy hosting change directory"

Code answers related to "Javascript"

Browse Popular Code Answers by Language