created: 2021-06-08T13:37:21.000Z
Firebase Hosting の一部のエンドポイントを CloudRun で受ける
こんな設定でできる。CloudFunctionで受けるのとほとんど一緒。
{
"hosting": {
"public": "public",
"rewrites": [
{
"source": "/**",
"run": {
"serviceId": "myappcloudrun-servicename",
"region": "asia-northeast1"
}
}
]
}
}