-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirebase.json
More file actions
27 lines (27 loc) · 790 Bytes
/
firebase.json
File metadata and controls
27 lines (27 loc) · 790 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
{
"hosting": {
"headers": [
{
"source": "**",
"headers": [
{
"key": "Content-Security-Policy",
"value": "default-src 'self' https://cdn.syncfusion.com; script-src 'self' https://cdn.syncfusion.com 'unsafe-eval' 'unsafe-inline'; style-src 'self' https://fonts.googleapis.com/ https://cdn.syncfusion.com 'unsafe-inline'; font-src 'self' https://fonts.googleapis.com/ https://fonts.gstatic.com/ data: cdn.syncfusion.com 'unsafe-inline';"
}
]
}
],
"public": "dist/ng-syncfusion",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}