monkeytype/frontend/firebase.json

43 lines
917 B
JSON
Raw Normal View History

2020-05-09 08:29:47 +08:00
{
"hosting": {
"public": "public",
2020-08-12 05:02:25 +08:00
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"rewrites": [
2020-11-01 02:03:28 +08:00
{
"source": "/privacy-policy",
"destination": "/privacy-policy.html"
},
{
"source": "/das",
"destination": "/das.html"
},
{
"source": "/terms-of-service",
"destination": "/terms-of-service.html"
},
{
"source": "/security-policy",
"destination": "/security-policy.html"
},
2020-08-12 05:02:25 +08:00
{
"source": "**",
"destination": "/index.html"
}
2020-05-09 08:29:47 +08:00
],
"cleanUrls": true,
2021-11-13 01:13:10 +08:00
"trailingSlash": false,
"headers": [
{
"source": "**/*",
"headers": [
{
"key": "Content-Security-Policy",
"value": "frame-ancestors 'none'"
},
{ "key": "X-Frame-Options", "value": "DENY" }
]
}
]
2020-05-09 08:29:47 +08:00
}
2020-08-12 05:02:25 +08:00
}