Files
Reactive-Resume/firebase.json
Amruth Pillai b52f3dee07 - add app version
- fix bugs with artboard
2020-07-17 10:32:28 +05:30

62 lines
1.3 KiB
JSON

{
"hosting": [
{
"target": "rxresume",
"public": "public",
"ignore": ["**/.*", "firebase.json", "**/node_modules/**"],
"headers": [
{
"source": "**/*",
"headers": [
{
"key": "cache-control",
"value": "cache-control: public, max-age=86400, must-revalidate"
}
]
},
{
"source": "static/**",
"headers": [
{
"key": "cache-control",
"value": "public, max-age=604800, immutable"
}
]
},
{
"source": "**/*.@(css|js|woff2|jpg|png)",
"headers": [
{
"key": "cache-control",
"value": "public, max-age=86400, immutable"
}
]
},
{
"source": "sw.js",
"headers": [
{
"key": "cache-control",
"value": "cache-control: public, max-age=86400, must-revalidate"
}
]
}
]
}
],
"emulators": {
"functions": {
"port": 5001
},
"hosting": {
"port": 5000
},
"ui": {
"enabled": true
}
},
"functions": {
"source": "functions"
}
}