Skip to content

Instantly share code, notes, and snippets.

@zanona
Created September 1, 2022 09:53
Show Gist options
  • Save zanona/3706c99b0cb195c050c8346ae016921c to your computer and use it in GitHub Desktop.
Save zanona/3706c99b0cb195c050c8346ae016921c to your computer and use it in GitHub Desktop.
redirect root firebase app hosting to another domain (excludes __/ files for auth)
{
"hosting": {
"public": "./",
"site": "example",
"ignore": ["firebase.json"],
"redirects": [
{
"regex": "^/([^_].*)",
"destination": "https://example.com/:1",
"type": 301
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment