본문 바로가기

Backend

[Nest.js] TypeError: (0 , cookie_parser_1.default) is not a function

반응형

Nest.js 초기 세팅 중 아래와 같은 에러가 발생했다.

(node:33324) UnhandledPromiseRejectionWarning: TypeError: (0 , cookie_parser_1.default) is not a function

 

찾아보니 import 때문에 발생한 문제라고 한다.

 

tsconfig.json에 "esModuleInterop": true를 추가해주고 다시 시작하니 잘 된다.

결과물

 

반응형