Skip to content

Instantly share code, notes, and snippets.

@preethamslab
Created September 7, 2021 15:24
Show Gist options
  • Save preethamslab/546107fd31df9130b3227589fc1b5256 to your computer and use it in GitHub Desktop.
Save preethamslab/546107fd31df9130b3227589fc1b5256 to your computer and use it in GitHub Desktop.
firebase.json after
{
"hosting": [
{
"public": "build",
"target": "prod",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
},
{
"public": "build",
"target": "staging",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment