TIL/트러블슈팅

[Nest] 53431 ERROR [ExceptionsHandler] () is not a function

초집중 2022. 11. 16. 19:23

 

말 그대로 기본 함수가 정의되지 않아서 생긴 문제였다.

 

함수를 찾아 올라가보니 export default로 반환된게 아니라 export로만 반환되어 문제가 발생했다

import ogs from 'open-graph-scraper';

import * as ogs from 'open-graph-scraper';

 

 

 

TypeError: (0 , dayjs_1.default) is not a function

This is my logger.ts file that error happens there: import logger from "pino"; import dayjs from "dayjs"; const log = logger({ prettyPrint: true, base: { pid: false, ...

stackoverflow.com