In my project, Angular adds css classes to HTML elements and components at runtime :
<div class="ng-tns-c99-6">..</div>
I've tried :
encapsulation: ViewEncapsulation.None
but it still adds the CSS class at runtime.
I found this answer here and tried to set ViewEncapsulation.None globally, but this doesn't affect it either, the CSS classes are still being added.
Is there a way to turn it off?