Here is a StackBlitz of the problem I'm facing:
https://stackblitz.com/edit/angular-ivy-aetvyf?file=src%2Fapp%2F
In AppComponent I'm subscribing to ActivatedRoute.url changes, but they only ever trigger once.
Shouldn't ActivatedRoute.url subscription emit on every route change?
I know I can use Router.events, but there you have to filter by event type and Router events don't have route segments, as ActivatedRoute.snapshot, for instance, does.
I have read all related questions, but none really answer the question.