32 lines
598 B
JSON
32 lines
598 B
JSON
{
|
|
"hosting": {
|
|
"public": ".",
|
|
"ignore": [
|
|
"firebase.json",
|
|
"**/.*",
|
|
"**/node_modules/**"
|
|
],
|
|
"rewrites": [
|
|
{
|
|
"source": "/app",
|
|
"destination": "/index.html"
|
|
}
|
|
],
|
|
"headers": [
|
|
{
|
|
"source": "**/*.@(js|css)",
|
|
"headers": [
|
|
{ "key": "Cache-Control", "value": "max-age=86400" }
|
|
]
|
|
},
|
|
{
|
|
"source": "**",
|
|
"headers": [
|
|
{ "key": "X-Frame-Options", "value": "DENY" },
|
|
{ "key": "X-Content-Type-Options", "value": "nosniff" }
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|