Error: An AuthUI instance already exists for the key "[DEFAULT]"에 대한 해결책
2298 단어 SPAFirebase자바스크립트TypeScript
Error: An AuthUI instance already exists for the key "[DEFAULT]"
라고 표시될 수 있다. 문제의 부호는 ↓이다.
const ui = new firebaseui.auth.AuthUI(firebase.auth())
ui.start('#firebaseui-auth-container', uiConfig)
이미 AuthUI가 존재하고 있음에도 불구하고
ui.delete()
를 호출하지 않고 다시 new
해 버리는 것이 문제 인 것 같습니다.간단한 해결책으로, ↑ 코드
const ui = firebaseui.auth.AuthUI.getInstance() || new firebaseui.auth.AuthUI(firebase.auth())
ui.start('#firebaseui-auth-container', uiConfig)
↑와 같이하면된다
참고 : Error: An AuthUI instance already exists for the key "[DEFAULT]"
Reference
이 문제에 관하여(Error: An AuthUI instance already exists for the key "[DEFAULT]"에 대한 해결책), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ayase/items/e3e3de209131aeeabb3d텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)