블로그 이름

[ERROR] 'component' is not a known element 본문

개발/오류

[ERROR] 'component' is not a known element

Hide 2024. 10. 29. 22:08

오늘은 새로운 모듈을 사용하려고 했는데, 모듈이 표시되지 않는 현상이 있었다.

 

모듈 표시가 안되고, F12 개발자 모드에 뜬  로그는 이렇다.

 

 

'nb-calendar-month-picker' is not a known element:
1. If 'nb-calendar-month-picker' is an Angular component, then verify that it is part of this module.
2. If 'nb-calendar-month-picker' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.

 

 

해당 컴포넌트를 찾을 수 없다는 내용인 듯 하다.

 

앵귤러 모듈 appModule에 해당 모듈을 추 가하여 해결하였다.

 

exports에 모듈 추가해주면 된다.