Skip to content

Firebase Deployment Configuration

William Noll edited this page Dec 17, 2016 · 3 revisions

Configure your Firebase deployment!

All Firebase deployment settings are located in the firebase.json file at the root of your project directory. Don't see one? Visit the Readme for installation details or run firebase init from the Command Line.

The initial config will look something like:

{
  "hosting": {
    "public": "app",
    "ignore": [
      "firebase.json",
      "**/.*",
      "**/node_modules/**"
    ]
  }
}

This file configures which files are published upon deployment.

Clone this wiki locally