Below is a service that can be used to get the previous url from angular router where it is navigated via router or browser’s back button // Service import { Injectable } from ‘@angular/core’; import { Router, RouterEvent, NavigationEnd } from ‘@angular/router’; /** A router wrapper, adding extra functions. */ @Injectable() export class RouterExtService {…