I'm using Angular 16.0.0 and Ionic 7.0.0 Error: NG04002: Cannot match any routes. URL Segment: 'home'
I try navigate to my 'home' component, I'm using:
this.router.navigate(['/home']);
But it isn't works.
I have this on my path:
{ path: 'home', loadChildren: () => import('./tabs/tabs.module').then(m => m.TabsPageModule) },
I tried other solutions for the stackoverflow problem NG04002, but nothing worked, I read something about but I don't know anything about it, I hope someone has a similar problem and can help me.