728x90
🌹 에러
The module 'react' was not found. Next.js requires that you include it in 'dependencies' of your 'package.json'. To add it, run 'npm install react'
The module 'react-dom' was not found. Next.js requires that you include it in 'dependencies' of your 'package.json'. To add it, run 'npm install react-dom'
internal/modules/cjs/loader.js:883
throw err;
^
Error: Cannot find module 'react'
Require stack:
처음에는 패키지가 제대로 연결되지 않은 줄 알고 패키지 연결이랑 이것저것 다 확인해도 안됐다....
근데 그러던 중.....자세히 읽어보니 react와 react-dom이 없다는 내용이였다ㅡㅡ
그래서 설치해줬다....
👌 해결방법
npm i react react-dom
실행이 잘 되는 것을 확인할 수 있다.
728x90
'개발&etc > React' 카테고리의 다른 글
[React] Node JS 버전 변경 - windows (0) | 2023.04.17 |
---|---|
[React] 오류: react-router-dom 설치 후 Route 오류 (0) | 2023.03.24 |
[React] node 버전 다운 그레이드 하기 (0) | 2023.03.24 |
[React]에러: react_dom_client__WEBPACK_IMPORTED_MODULE_1__.render is not a function show in the console of localhost:3000 (0) | 2023.03.24 |
[React] 'Axios' is not defined (0) | 2023.03.16 |