This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
resolver/firebase.json
2018-02-23 22:27:34 +07:00

26 lines
586 B
JSON

{
"hosting": {
"public": "build",
"headers": [
{
"source": "**",
"headers": [
{
"key": "Cache-Control",
"value": "max-age=7200"
}
]
}
],
"rewrites": [
{
"source": "/favicon.ico",
"destination": "/favicon.ico"
},
{
"source": "**",
"destination": "/index.html"
}
]
}
}