在 React 中自动配置 Firebase SDK

Auto config Firebase SDK in React

我想不通的是:通过网络获取特殊的 js/json 文件是异步的,同时 React 应用程序正在初始化并且需要 firebase 应用程序进行身份验证和其他操作。有没有一种方法可以完成 firebase init 并在 react 启动之前准备好 firebase 应用程序实例?

找到这个 firebase-CLI 命令:

firebase setup:web --json

它将根据活动的 firebase 应用程序 (firebase use) 输出初始化 firebase 应用程序所需的 json。 只需要在构建链中包含生成的 json。

firebase setup:web --json 已弃用。

您现在可以改用 firebase apps:sdkconfig web --json

完整信息