Skip to content

Instantly share code, notes, and snippets.

@509dave16
Created June 24, 2018 02:08
Show Gist options
  • Save 509dave16/784ec7df19d6e5b22b3ec41121177c3d to your computer and use it in GitHub Desktop.
Save 509dave16/784ec7df19d6e5b22b3ec41121177c3d to your computer and use it in GitHub Desktop.
Example firebase config file
{
"hosting": {
"public": "www",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
],
"headers": [
{
"source": "/build/app/**",
"headers": [
{
"key": "Link",
"value": "public, max-age=31536000"
}
]
},
{
"source": "sw.js",
"headers": [
{
"key": "Cache-Control",
"value": "no-cache"
}
]
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment