바보일기

throw new TypeError('Router.use() requires a middleware function but got a ' + gettype(fn)) / TypeError: Router.use() requires a middleware function but got a Object

찰리-누나 2022. 12. 5.

throw new TypeError('Router.use() requires a middleware function but got a ' + gettype(fn)) 

TypeError: Router.use() requires a middleware function but got a Object

 

 

문제 상황, 원인 파악

게시글 작성 router파일을 app.user로 불러오자 뜬 에러. 미들웨어가 없다는둥 휘황찬란한 에러이지만 단순하게 export 해주지 않아서 발생한 문제이다.

 

 

해결 방법

 

router를 exports 해준다.

 

해결됨

댓글