schmelczer-dev/firebase.json
schmelczerandras 55bdc9dd77 Fix caching
2020-11-22 22:57:27 +01:00

31 lines
618 B
JSON

{
"hosting": {
"public": "dist",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"site": "schmelczer-dev",
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
],
"redirects": [
{
"source": "/fizika",
"destination": "https://fizika.schmelczer.dev",
"type": 301
}
],
"headers": [
{
"source": "**/*.@(jpg|jpeg|webp|png|webm|mp4|gif)",
"headers": [
{
"key": "Cache-Control",
"value": "max-age=31536000"
}
]
}
]
}
}