gpt4 book ai didi

javascript - 如何停止警告 : It looks like you're using the development build of the Firebase JS SDK?

转载 作者:数据小太阳 更新时间:2023-10-29 04:04:56 25 4
gpt4 key购买 nike

It looks like you're using the development build of the Firebase JS SDK.
When deploying Firebase apps to production, it is advisable to only import
the individual SDK components you intend to use.

For the CDN builds, these are available in the following manner
(replace <PACKAGE> with the name of a component - i.e. auth, database, etc):

https://www.gstatic.com/firebasejs/5.0.0/firebase-<PACKAGE>.js

它占用了我本已有限的控制台空间的一半:(

注意:我在 html 中使用 firebase .. 带有脚本标签。我不使用此处解释的导入语法:similar question

如何停止这个警告?

最佳答案

为了更清楚地回答这个问题,

你最有可能拥有的是

<script src="https://www.gstatic.com/firebasejs/6.0.2/firebase.js"></script>

因为这是 Firebase 在“将 Firebase 添加到您的网络应用程序”屏幕中为您提供的内容。

但是,这是在导入所有 Firebase 模块。我不知道为什么 Firebase 将此作为生成的脚本,但您需要做的就是将 -app 添加到源中,现在就是这样。

<script src="https://www.gstatic.com/firebasejs/6.0.2/firebase-app.js"></script>

然后,对于您想使用的 Firebase 的每个后续功能,您将需要添加另一个脚本行。例如,如果您想将云消息添加到您的 Web 应用程序中,则只需要它。

<script src="https://www.gstatic.com/firebasejs/6.0.2/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/6.0.2/firebase-messaging.js"></script>

您可以找到更多信息,包括完整的进口 list here from Firebase.

关于javascript - 如何停止警告 : It looks like you're using the development build of the Firebase JS SDK?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50834092/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com