본문 바로가기
Coding/React

React - Error: The specified module could not be found.

by z쿳쿳z 2022. 1. 5.
728x90
반응형

Next.js CLI로 Next.js 설치하고 template으로 typescript를 설치하고 npm run dev를 실행 시켰을때, 

npx create-next-app [폴더명] --ts

Error: The specified module could not be found nextjs와 같은 error가 발생할 경우가 있다. 

 

이럴 경우 babel을 통해서 해결할 수 있다.

 

최상위 폴더에 .babelrc 파일을 만들고, 아래와 같이 넣어준다. 그리고 npm run dev를 다시 실행시키면 잘 작동한다. babel에 presets 옵션은 babel의 공유 가능한 config 옵션이나 plugin을 공유 가능하도록 해준다.

{
  "presets": ["next/babel"]
}

 

 

https://stackoverflow.com/questions/69859120/the-specified-module-could-not-be-found-d-next-js-firstapp-node-modules-n

 

the specified module could not be found. \\?\d:\next.js\firstapp\node_modules\@next\swc-win32-x64-msvc\next-swc.win32-x64-msvc.n

I have installed the next.js app. When I run the command npm run dev I got this error the specified module could not be found. \?\d:\next.js\firstapp\node_modules@next\swc-win32-x64-msvc\next-swc....

stackoverflow.com

 

728x90
반응형

'Coding > React' 카테고리의 다른 글

React - regeneratorRuntime is not defined  (0) 2022.02.03
React - React install  (0) 2022.02.02
React - Context API  (0) 2021.12.19
React - flicking(2) version up  (0) 2021.12.12