hblock/firebase.json
Héctor Molinero Fernández b16f68497d Updated firebase.json
2018-04-15 18:55:38 +02:00

30 lines
714 B
JSON

{
"hosting": {
"public": "dist",
"headers": [{
"source": "**",
"headers": [{
"key": "Content-Security-Policy",
"value": "default-src 'none'; style-src 'unsafe-inline' https://hblock-check.molinero.xyz; img-src data:;"
}, {
"key": "X-XSS-Protection",
"value": "1;mode=block"
}, {
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
}]
}, {
"source": "**/@(*.txt|hosts)",
"headers": [{
"key": "Content-Type",
"value": "text/plain; charset=utf-8"
}]
}, {
"source": "**/*.zip",
"headers": [{
"key": "Content-Type",
"value": "application/zip"
}]
}]
}
}