error
[error react] moudle not found: Error: Can't resolve 'xxxx' in
멋진놈
2024. 10. 31. 16:08
728x90
# 에러 내용 :
ERROR in ./src/App.js 7:0-74
Module not found: Error: Can't resolve 'react-router-dom' in
ERROR in ./src/components/Hello.js 6:0-26
Module not found: Error: Can't resolve 'axios' in
# 원인 :
react에서 해당 하는 라이브러리(모듈)를 사용할때, 설치 되어 있지 않을때 나는 에러.
# 해결
해당 하는 라이브러리를 설치해주면 됨.
터미널 해당 react 위치에서
npm install axios --save
npm install react-router-dom
후에 다시
npm start 시작 하기