I'm trying to redirect my app when launching and it's not working. I'm just trying to use router.navigate in my ngOnInit() and it returns false.
I tried to insert it in a setTimeout and then it works.
If you have any idea it would be appreciated :)
ngOnInit() {
// On redirige au lancement sur la page hors connexion
setTimeout(() => this._router.navigate(["/hors-connexion"]));
}