Reputation: 5757
As I notice that when any error occurs in Angular 2
app, It breaks routing also. Is there any way to handle this and prevent break routing issue?
Upvotes: 1
Views: 219
Reputation: 15271
No, almost any not handled error will break Angular app, not only router. You must handle/catch/prevent all errors.
Upvotes: 2