我的firebase应用程序已部署并运行,但经过一些更改后,它停止了工作。 部署时出现以下错误。
Error: functions.config() is not available. Please use the latest version of the Firebase CLI to deploy this function.
更新firebase-functions和firebase-admin
之后npm install firebase-functions@latest --save
npm install firebase-admin@5.11.0 --save
直到这里一切都很好......
由于不推荐使用functions.config(),并且我当前使用这两个const来获取存储桶名称和存储桶。
const bucketName = functions.config().firebase.storageBucket
const bucket = storage.bucket(bucketName)
我收到以下错误:
TypeError:无法读取未定义
的属性'storageBucket'
我应该修改什么来修复它?或者我做错了什么!??