Is there a way to preserve which page I was on before logging out and be redirected to that same page and not a default homepage after login.
Asked
Active
Viewed 166 times
1 Answers
0
There are two ways you can achieve it.
- Save the page/route name in the database and retrieve it on login.
- Save the page/route name in local storage and retrieve it on login.
In your login component then check if there was a value in local storage or database:
If YES: route to page you were on before login out.
this.router.navigate(['your page before logout']);
If No: route to the default page.

CodeWarrior
- 5,026
- 6
- 30
- 46