有人知道在执行一些数据库升级时将静态Firebase网站置于维护模式的好方法吗?
我尝试用自定义标头配置重写,但是它不起作用。 Firebase托管似乎在响应中同时返回默认状态(200)和自定义状态(503)。
我的firebase.json
:
{
"hosting": {
"public": "public",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
],
"headers": [
{
"source": "**",
"headers": [
{
"key": "status",
"value": "507"
}
]
}
]
}
}
chrome响应头: