몽땅뚝딱 개발자

[npm] Not compatible with your version of node/npm 본문

에러일지/환경설정

[npm] Not compatible with your version of node/npm

레오나르도 다빈츠 2023. 11. 23. 11:37

 

 

 

 

 

배포하면서 npm i 를 실행할 때 문제가 발생했다.

버전 문제 같아서 동료에게 조언을 구하여 해결했다. (감사합니다..🙇🏻‍♀️)

 

 

📄 buildspec.yml

// before
phases:
  install:
    commands:
      - npm i npm@latest -g

// after
phases:
  install:
    commands:
      - npm i npm@8.19.4 -g

 

 

 


개인적으로 공부한 내용을 정리하는 블로그로
잘못된 개념을 게시하지않도록 주의하고 있으나 오류가 있을 수 있습니다.

 

 

Comments