BaeBox

supress circular dependencies 문제 해결 본문

개발 관련

supress circular dependencies 문제 해결

배모씨. 2019. 12. 10. 18:01
반응형

최선 : 여러 번 내지는 잘못 import, export 되어 있는 선언을 정리해 주는 것이고, 

차선 :  "showCircularDependencies": false 를 설정해 주는 방식으로도 해결 가능하다. 사실 차선이라기보단, 임시방편이다. 

angular.json

angular.json의 projects[프로젝트명].architect.build.options 하위 경로이다. 

 


https://charlie-choi.tistory.com/112

 

WARNING in Circular dependency detected

Angular를 사용하다가 갑자기 다음과 같은 Circular dependenct detected 경고문이 나왔다. Dependenct import와 export를 잘못 사용해서 나오는 경고문이다. 제일 좋은 방법은 필요없는 import 및 export를 지우..

charlie-choi.tistory.com

 

반응형

'개발 관련' 카테고리의 다른 글

Angular 프로젝트 생성 && rc(release candidate) 버전  (0) 2020.01.05
Angular 란?  (0) 2020.01.05
proxy body 제한 설정  (0) 2019.11.29
PF_RING 이란?  (0) 2019.11.26
Suricata 란?  (0) 2019.11.26
Comments