Files
GestorCondominio/firebase.json
2026-06-11 17:06:13 +01:00

41 lines
753 B
JSON

{
"database": {
"rules": "database.rules.json"
},
"hosting": {
"target": "condomaster",
"public": ".",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
],
"headers": [
{
"source": "**/*.html",
"headers": [
{
"key": "Cache-Control",
"value": "no-cache, no-store, must-revalidate"
}
]
},
{
"source": "**/*.@(js|css|png|jpg|jpeg|gif|svg|woff|woff2)",
"headers": [
{
"key": "Cache-Control",
"value": "max-age=31536000"
}
]
}
]
}
}