기록

'next' 모듈을 찾을 수 없습니다. 본문

TIL*

'next' 모듈을 찾을 수 없습니다.

mnmhbbb 2023. 8. 17. 20:04

next.js 를 설치했는데 다음과 같은 에러가 떴다.

모듈을 찾을 수 없다고 한다.
모듈을 찾는 방법을 다르게 설정해야 한다.
moduleResolution을 node로 설정하면 node_modules 폴더에서 모듈을 검색한다.

 

그래서 tsconfig.json을 다음과 같이 수정한다.

{
  "compilerOptions": {
    "target": "es5",
    "lib": ["dom", "dom.iterable", "esnext"],
    "allowJs": true,
    "skipLibCheck": true,
    "strict": true,
    "forceConsistentCasingInFileNames": true,
    "noEmit": true,
    "esModuleInterop": true,
    "module": "esnext",
    // "moduleResolution": "bundler", 이 부분을
    "moduleResolution": "node", // 이렇게 변경

 

 

 

Comments