[ Vue.js | Vuex ] Vuex 설치 에러 | npm ERR! code ERESOLVEnpm ERR! ERESOLVE unable to resolve dependency tree
Vue.js 3 프로젝트에서 Vuex를 설치하려고 했는데 해당 에러가 발생하였다.
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: kiosk@0.1.0
npm ERR! Found: vue@3.2.21
npm ERR! node_modules/vue
npm ERR! vue@"^3.0.0" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer vue@"^2.0.0" from vuex@3.6.2
npm ERR! node_modules/vuex
npm ERR! vuex@"*" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
npm ERR! See /root/.npm/eresolve-report.txt for a full report.
npm ERR! A complete log of this run can be found in:
npm ERR! /root/.npm/_logs/2021-11-10T02_31_20_661Z-debug.log
이 에러는 Vue.js 3 버전에서 Vuex를 설치하였기 때문에 발생하는 에러이다.
그렇기 때문에 처음에 vue.js 3를 설치하는 방법대로 해야만 한다.
npm install vuex@next --save
를 명령해준다.
아, 그리고 이제 본문에 광고를 넣지 않기로 마음먹었다.
종종 내 포스트들을 보면 너무 난잡해보이는 경향이 있다.
중간 ads를 아예 안넣었는데도 난잡해보이면, 음... 게시글 상단의 광고도 지울 생각이다.
[ Axios ] Axios 사용하기 / url에 관한 짧은 정보 / where is root path of Axios(url) ? / 예시 / example (0) | 2021.11.11 |
---|---|
[ Vue.js ] Component 등록의 2가지 방법(전역/지역) 과 번외 (0) | 2021.11.10 |
[ Vue.js ] Vue-cli - proxy error " Proxy error: Could not proxy request " (0) | 2021.11.09 |
[ Vue.js ] 'Axios' is not defined no-undef (0) | 2021.11.09 |
[ Vue.js ] Error - [WDS] Disconnected! 에러 (0) | 2021.11.09 |
댓글 영역