I am using ngFor to create a list of items. In production, my app had a bug and stopped the list at an item that caused an exception during the execution of my template.
<div *ngFor="let foo of foos">
<p>{{foo.this.attribute.doesnt.exist}}</p>
</div>
Is there a way to enable a production mode, in which Angular simply skips this list entry? I prefer to have a list not being present in the list rather than breaking it mid-way and destroying the layout.