Skip to content

Instantly share code, notes, and snippets.

@akhil-gautam
Last active November 17, 2018 04:06
Show Gist options
  • Save akhil-gautam/6d62b6c33a964bcd2aba9d0e881dc9b1 to your computer and use it in GitHub Desktop.
Save akhil-gautam/6d62b6c33a964bcd2aba9d0e881dc9b1 to your computer and use it in GitHub Desktop.
firebase.json file for multiple hsoting on firebase
{
"hosting": [
{
"target": "appone",
"public": "dist1",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
},
{
"target": "apptwo",
"public": "dist2",
"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