当前我收到警告:
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
我已经通过多个相关链接解决了此问题,但是即使按照他们所有的解决方案进行操作,我也无法消除该错误。 如描述所述,使用给定的链接和我正在使用的组件的名称。我已经包含了所需的链接,但仍然看到警告。
我什至试图包括Firebase网站中给出的所有链接,但我仍然看到它。
目前,我仅使用Firebase实时数据库,但在使用CMD创建firebase初始化时,我包括了功能,托管,存储和数据库。
<script src="https://www.gstatic.com/firebasejs/5.0.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.0.0/firebase-database.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.0.0/firebase.js"></script>
我什至尝试将版本从5.0.0更改为5.4.0,但没有用。 该如何解决?
答案 0 :(得分:1)
我刚刚通过添加两个脚本解决了这个问题。
<script src="https://www.gstatic.com/firebasejs/5.0.2/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.0.2/firebase-database.js"></script>