-
Notifications
You must be signed in to change notification settings - Fork 1
Firebase Deployment Configuration
William Noll edited this page Dec 17, 2016
·
3 revisions
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.