Created
October 29, 2015 02:53
-
-
Save developit/b27ad8af7eacf92d2ef9 to your computer and use it in GitHub Desktop.
just replace your app name and go.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"firebase": "your-app-name-here", | |
"public": "build", | |
"ignore": [ | |
"firebase.json", | |
"**/.*", | |
"**/node_modules/**" | |
], | |
"rewrites": [ | |
{ | |
"source": "**", | |
"destination": "/index.html" | |
} | |
], | |
"headers": [ | |
{ | |
"source" : "**", | |
"headers" : [ | |
{ | |
"key" : "Access-Control-Allow-Origin", | |
"value" : "*" | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment