개발로 부자되기/next.js
해결법 Next.js error cannot find module 'next/headers'
야나부짱
2023. 8. 15. 00:21
nextauth error가 발생할 수 있는데,
나 같은 경우엔 next.js version과
next-auth version이 안맞아서 난 에러였다.
next version을 v12를 쓰고 있었는데
이 v12와 맞는 버젼에 next-auth를 써야 빌드된다.
"next": "12.1.6",
아래 글처럼 "next-auth": "4.15.1" 로 고정한후
node_modules를 지우고 다시 빌드하니 문제없이 동작했다!
https://stackoverflow.com/questions/74339649/next-js-error-cannot-find-module-next-headers
Next.js error cannot find module 'next/headers'
Faced this issue when I was using login functionality developed by my teammate in a group project and apparently I am the only one facing this issue. npm version: 8.19.3 node version: 16.17.0 package.
stackoverflow.com