loom3 / firebase.json
droplyvictor89's picture
Upload 6 files
1a85e19 verified
raw
history blame contribute delete
429 Bytes
{
"hosting": {
"public": ".",
"ignore": [
"firebase.json",
"**/.*",
"server.py"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
],
"headers": [
{
"source": "**/*.@(js|css)",
"headers": [
{
"key": "Cache-Control",
"value": "max-age=31536000"
}
]
}
]
}
}