bc0f03e574
* Add default language while app is loading * Global refactoring; Add router support * Add hook for places-and-views; hook for panel-scroll; hook for sound * Update version & firebase config * Add useViewScroll hook for view component * Add dialog modal basics * Update screenshots; Create help dialog; Add new places and views;
46 lines
874 B
JSON
46 lines
874 B
JSON
{
|
|
"hosting": {
|
|
"public": "build",
|
|
"rewrites": [
|
|
{
|
|
"source": "**",
|
|
"destination": "/index.html"
|
|
}
|
|
],
|
|
"ignore": [
|
|
"firebase.json",
|
|
"**/.*",
|
|
"**/node_modules/**"
|
|
],
|
|
"headers": [
|
|
{
|
|
"source": "**/*",
|
|
"headers": [
|
|
{
|
|
"key": "cache-control",
|
|
"value": "cache-control: public, max-age=0, must-revalidate"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"source": "static/**",
|
|
"headers": [
|
|
{
|
|
"key": "cache-control",
|
|
"value": "public, max-age=31536000, immutable"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"source": "**/*.@(css|js|ogg|mp3)",
|
|
"headers": [
|
|
{
|
|
"key": "cache-control",
|
|
"value": "public, max-age=31536000, immutable"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|