npm install 할 때,
npm WARN read-shrinkwrap This version of npm is compatible with lockfileVersion@1, but npm-shrinkwrap.json was generated for lockfileVersion@2. I'll try to do my best with it!
위와 같은 에러 발생.
npm version이 6.14.4이라 lockfileVersion 1을 호환해야하는데 해당 프로젝트는 lockfileVersion 2라서 생기는 문제로
npm version을 7 또는 8로 업그레이드 하면 된다.
npm install --g npm
반응형
'💻 개발IT > Vue.js' 카테고리의 다른 글
[Vue] process.env undefined 오류 (0) | 2022.09.07 |
---|---|
[Vue] Property or method * is not defined on the instance but referenced during render. (0) | 2022.09.06 |
Vue lifecycle 수명주기 (0) | 2022.08.11 |