여씨의 개발이야기
[Today's Bug] Local package.json exists, but node_modules missing, did you mean to install? 본문
🐞 Debug
[Today's Bug] Local package.json exists, but node_modules missing, did you mean to install?
yeossi 2021. 12. 29. 13:46📢 이 버그 좀 보세요!
기존에 만들어져있는 Vue 프론트엔드 소스를 build하는 과정에서 위와 같은 오류가 났다.
🐞 버그가 나타난 이유?
"Local package.json exists, but node_modules missing, did you mean to install?"
해석한 그대로 package.json이 있지만, node_modules 파일이 존재하지 않아 생긴 에러다.
🕸 어떻게 이 버그를 잡을까?
node_modules를 설치해주면 위의 에러를 잡을 수 있다.
> npm install
...
-- 설치 뒤에
> npm run build
-- 정상 작동함
'🐞 Debug' 카테고리의 다른 글
Comments