Firebase Hosting の一部のエンドポイントを CloudRun で受ける
Jun 8, 2021 22:37 · 74 words · 1 minute read
こんな設定でできる。CloudFunctionで受けるのとほとんど一緒。
{
"hosting": {
"public": "public",
"rewrites": [
{
"source": "/**",
"run": {
"serviceId": "myappcloudrun-servicename",
"region": "asia-northeast1"
}
}
]
}
}