에러 상황
firebase의 storage로 이미지 업로드 기능을 구현하려고 mypage에 storage를 import 했는데... 또!!!! 에러가 났다.
정말 이 이미지는 언제 봐도 적절하다. 내가 좋아하는 이미지
ERROR in ./src/component/authentication/MyPage.jsx 7:0-35
Module not found: Error: Package path . is not exported from package C:\codeGit\deve11og\node_modules\firebase (see exports field in C:\codeGit\deve11og\node_modules\firebase\package.json)
해결 방법
저번부터... vscode 가 적어주는 경로에 문제가 있어서 이번에는... 에러명이 다르지만... 금방 해결할 수 있었다...
// import { storage } from 'firebase'; //에러 경로
import { storage } from '../../firebase'; //맞는 경로
느낀 점
에러를 열심히 모아놔야겠다....
언제 발생할지 모르니 긴장을 늦출 수 없다...
오늘도 에러를 모았다 🤣
'트러블슈팅' 카테고리의 다른 글
[supabase] enabled / 나는 테이블 3개 조인이 필요한데... (0) | 2024.03.22 |
---|---|
SyntaxError: Unexpected token e in JSON at position 0 (0) | 2024.02.21 |
[react] redux reducer 를 작성할 때 switch 에 default 를 빼먹는다면... / The slice reducer for key "letter" returned undefined during initialization. (0) | 2024.02.02 |
[react] 에러 지옥 - 경로 문제 (0) | 2024.02.02 |
[Warning] styled-components 속성을 인식하지 못할 때 (0) | 2024.02.01 |