반응형 Firebase4 React Firebase 연동 오류 해결(v8 => v9) 기존에 잘 들어가던 코드가 어느날 아래와 같은 오류가 발생하였습니다. Failed to compile. ./src/fbase.js Attempted import error: 'firebase/app' does not contain a default export (imported as 'firebase'). 요약하면 firebase 를 import 할 수 없다는 내용이었습니다. 찾아보니 버전문제였고 firebase 버전 9부터 사용법이 아예 바뀌었습니다. 버전8까지 import import firebase from 'firebase/app'; import 'firebase/auth'; import 'firebase/firestore'; 버전9 // v9 compat packages are API compa.. React 2022. 12. 24. [Firebase Deploy]error The project to be billed is associated with an absent billing account. Firebase 에 functions 함수를 사용해서 deploy 를 시도할때 "The project to be billed is associated with an absent billing account." 다음과 같은 오류가 발생했다. 이럴 경우는 1. 결제 정보가 Blaze 인지 확인한다. 2. 아래와 같이 functions/index.js 내의 region 정보와 firebase 콘솔내 프로젝트 설정의 GCP 리소스 위치가 일치하는지 확인한다. 이후에 deploy 를 실행하면 잘 동작한다. functions/index.js exports.homtAPI = functions.region("asia-east2").https.onRequest(app); 카테고리 없음 2022. 11. 18. Firebase login 에러 nodejs firebase.ps1 파일을 로드할 수 없습니다. 라는 오류가 뜰 시. PowerShell을 관리자 권한으로 실행시키고, Set-ExecutionPolicy RemoteSigned 명령어를 실행시키면 실행 가능하다. 카테고리 없음 2021. 12. 19. npm i -g firebase-tools leads to ...firebase.ps1 cannot be loaded because running scripts is disabled on this system 윈도우 환경에서 firebase cli Command 를 수행할 때 아래와 같은 명령어가 뜨면서 동작 오류가 발생할 때가 있다. + CategoryInfo : SecurityError: (:) [], PSSecurityException + FullyQualifiedErrorId : UnauthorizedAccess cmd 창을 실행 할 때 관리자 권한으로 실행해 주면 정상동작한다. IT 문제해결 2020. 10. 8. 이전 1 다음 반응형