Skip to content

Commit

Permalink
Merge pull request #13 from dmccartney/daniel-cors
Browse files Browse the repository at this point in the history
feat: enable cors so safe can inspect the manifest
  • Loading branch information
dmccartney authored May 27, 2023
2 parents 136cfd2 + 504f2d6 commit 9dc3cf8
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions firebase.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,25 @@
"**/.*",
"**/node_modules/**"
],
"headers": [
{
"source": "**",
"headers": [
{
"key": "Access-Control-Allow-Origin",
"value": "*"
},
{
"key": "Access-Control-Allow-Credentials",
"value": "true"
},
{
"key": "Access-Control-Allow-Headers",
"value": "Access-Control-Allow-Origin, Access-Control-Allow-Credentials"
}
]
}
],
"rewrites": [
{
"source": "**",
Expand Down

0 comments on commit 9dc3cf8

Please sign in to comment.