Suppress “Circular dependency detected” suppress warning in Angular 6

后端 未结 3 2027
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-11 15:11

I get the warning

Circular dependency detected!

in Angular 6 and I know why this problem appears, but it is not a problem at all

相关标签:
3条回答
  • 2021-01-11 15:52

    It should be a problem, because it's like a recursive function with multiple components/modules. Ignoring the warning may cause a slow site, memory leaks, etc.

    You may not notice anything at the moment, but it's bad practice, that you shouldn't get used to.

    Here is an example, how your circular dependency could be resolved.

    Edit:

    If you want to disable the warning completely, you can do that by modifying your angular.json config file.

    "defaults": {
        "apps": {
          "showCircularDependencies": false
        }
        "build": {
          "showCircularDependencies": false
        }
      }
    
    0 讨论(0)
  • 2021-01-11 15:56

    Here the right path into the angular.json file :

    projects -> architect -> options - > "showCircularDependencies": false
    
    0 讨论(0)
  • 2021-01-11 15:57

    projects -> architect -> options - > "showCircularDependencies": false

    @Marcello is correct that is the corrrect path...however if running "ng serve" you need to make sure to stop (Ctrl+C) and restart it for your angular.json file to be loaded or you will still get the circular dependency warnings.

    0 讨论(0)
提交回复
热议问题