更新到 CLI 3.17.5 后出现同样的错误:Firebase 配置变量不可用。请使用最新版本的 Firebase CLI
same error after updating to CLI 3.17.5 : Firebase config variables are not available. Please use the latest version of the Firebase CLI
从 3.17.4 更新到最新的 Firebase CLI 工具 3.17.5 后,当我尝试在本地模拟功能时遇到此错误?
怎么解决这个问题,我试了很多次更新刷新都没有成功。
-functions inside the functions directory.
! functions: Error from emulator. Error occurred while parsing your function triggers. Please ensure you have the latest firebase-functions SDK by running "npm i --save firebase-functions@latest" inside your functions folder.
Error: Firebase config variables are not available. Please use the latest version of the Firebase CLI to deploy this function.
at init (D:\android-projects\firebase\functions\node_modules\firebase-functions\lib\config.js:55:15)
at Object.config (D:\android-projects\firebase\functions\node_modules\firebase-functions\lib\config.js:29:9)
at Object.<anonymous> (D:\android-projects\firebase\functions\index.js:56:31)
at Module._compile (module.js:570:32)
at Object.Module._extensions..js (module.js:579:10)
at Module.load (module.js:487:32)
at tryModuleLoad (module.js:446:12)
at Function.Module._load (module.js:438:3)
at Module.require (module.js:497:17)
at require (internal/module.js:20:19)
Shutting down...
错误消息并没有告诉您有关使用 firebase-tools
安装的 CLI 的信息。它专门告诉您安装在函数文件夹中的 firebase-functions
依赖项。请接受它的具体建议并在您的项目中安装最新的 firebase-functions 模块。
从 3.17.4 更新到最新的 Firebase CLI 工具 3.17.5 后,当我尝试在本地模拟功能时遇到此错误?
怎么解决这个问题,我试了很多次更新刷新都没有成功。
-functions inside the functions directory.
! functions: Error from emulator. Error occurred while parsing your function triggers. Please ensure you have the latest firebase-functions SDK by running "npm i --save firebase-functions@latest" inside your functions folder.
Error: Firebase config variables are not available. Please use the latest version of the Firebase CLI to deploy this function.
at init (D:\android-projects\firebase\functions\node_modules\firebase-functions\lib\config.js:55:15)
at Object.config (D:\android-projects\firebase\functions\node_modules\firebase-functions\lib\config.js:29:9)
at Object.<anonymous> (D:\android-projects\firebase\functions\index.js:56:31)
at Module._compile (module.js:570:32)
at Object.Module._extensions..js (module.js:579:10)
at Module.load (module.js:487:32)
at tryModuleLoad (module.js:446:12)
at Function.Module._load (module.js:438:3)
at Module.require (module.js:497:17)
at require (internal/module.js:20:19)
Shutting down...
错误消息并没有告诉您有关使用 firebase-tools
安装的 CLI 的信息。它专门告诉您安装在函数文件夹中的 firebase-functions
依赖项。请接受它的具体建议并在您的项目中安装最新的 firebase-functions 模块。