photos/firebase.json
Andras Schmelczer 2010af6c12 ?
2021-05-30 11:56:27 +02:00

24 lines
472 B
JSON
Executable file

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