Skip to content

Commit

Permalink
Fix redirections on Firebase hosting
Browse files Browse the repository at this point in the history
  • Loading branch information
didmar committed Sep 28, 2022
1 parent ccfbf45 commit 1d1751e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions firebase.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@
},
"hosting": {
"public": "build",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
},
"emulators": {
Expand Down

0 comments on commit 1d1751e

Please sign in to comment.