forked from raviqqe/pomodoro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirebase.json
32 lines (32 loc) · 835 Bytes
/
firebase.json
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
30
31
32
{
"firestore": {
"rules": "firestore.rules",
"indexes": "firestore.indexes.json"
},
"hosting": {
"public": "build",
"headers": [
{
"source": "**/*",
"headers": [
{
"key": "Access-Control-Allow-Origin",
"value": "https://pomodoro.code2d.org"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self' *.google.com *.googleapis.com *.gstatic.com sentry.io; style-src 'self' 'unsafe-inline' *.googleapis.com; frame-ancestors 'none'"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=63072000; includeSubDomains; preload"
},
{
"key": "X-Frame-Options",
"value": "DENY"
}
]
}
]
}
}