如何从firebaseAngular 应用程序中删除警告消息

4si2a6ki  于 2022-12-14  发布在  Angular
关注(0)|答案(1)|浏览(104)

我正在使用@angular/fire仿真器来仿真我的firebase angular应用程序中的身份验证过程。但是当我运行它时,我看到一条警告消息,说“正在仿真器模式下运行。不要使用productions凭据”:

我在github issues中看到了一个隐藏消息的特性,但是我不知道如何隐藏。
你知道我来干这件事吗?

7kqas0il

7kqas0il1#

有点晚了,但这里是我的解决方案,因为我不得不处理它最近:
1.我检查了元素,发现警告消息具有css类**".firebase-emulator-warning”**
1.从那里我只是在CSS中定义了一个样式来隐藏警告
. firebase仿真器警告{显示:无; }
1.然后我决定这是一个好主意,仍然显示它,但使它不那么侵扰。
为此,我使用了略微不同的样式:

/* making firebase emulator warning less intrusive */
.firebase-emulator-warning {
  background-color: transparent !important;
  border: none !important;
  color: rgba(245, 66, 66, 0.3) !important;
}

结果:

相关问题