-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirebase.json
More file actions
29 lines (29 loc) · 809 Bytes
/
firebase.json
File metadata and controls
29 lines (29 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"hosting": {
"public": "public",
"headers": [ {
"source" : "**/*.@(ico)",
"headers" : [ {
"key" : "Cache-Control",
"value" : "max-age=365000000, immutable"
} ]
},
{
"source":"**",
"headers": [
{"key":"Content-Security-Policy","value":"default-src 'none'; style-src 'self'; connect-src 'self'; img-src * data:"},
{"key":"Referrer-Policy","value":"no-referrer"},
{"key":"Permissions-Policy","value":"interest-cohort=()"},
{"key":"X-Frame-Options","value":"deny"}
]
},
{
"source" : "**/*.@(css)",
"headers" : [ {
"key" : "Cache-Control",
"value" : "max-age=700000"
} ]
}
]
}
}