본문 바로가기
트러블슈팅

또 경로 에러 이번엔 firebase / Module not found: Error: Package path . is not exported from package

by dev__log 2024. 2. 8.

에러 상황

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'; //맞는 경로

 

 

느낀 점

에러를 열심히 모아놔야겠다....

언제 발생할지 모르니 긴장을 늦출 수 없다...

 

오늘도 에러를 모았다 🤣