Firebase Cloud Firestore throws “client is offline”

前端 未结 8 1566
栀梦
栀梦 2020-12-11 15:14

About 3 out of 4 times loading the page I get this error from the firestore client SDK (web). This slows development down tremendously. Auth, Realtime DB and Storage work pe

8条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-11 15:49

    I updated all my packages and I ran into this issue.
    I enabled offline persistence for my web app and that fixed the problem:

    firebase.firestore().enablePersistence()
    

    https://firebase.google.com/docs/firestore/manage-data/enable-offline

提交回复
热议问题