我正在尝试使用 Firebase 托管重写配置来在亚洲地区使用 Firebase 功能。但我找不到任何文档来执行此操作。
基本上,我想通过 访问app
该地区的 Firebase 功能。asia-northeast1
https://<target-name>.firebaseapp.com/
firebase.json
我正在尝试什么配置( ):
{
"hosting": {
"target": "my-target",
"public": "public",
"region": "asia-northeast1", // attempt #1
"rewrites": [
{
"region": "asia-northeast1", // attempt #2
"source": "**",
"function": "app"
}
]
}
}
答案1
截至 2019 年 6 月,这是不可能的,因为 Firebase Hosting 仅在该us-central1
地区可用,因此只能代理到同一地区的 Firebase Functions。