I\'ve defined my routes like this:
const routes: Routes = [
{ path: \'\', loadChildren: \'./tabs/tabs.module#TabsPageModule\' },
{ path: \'faq\', lo
I found solution by adding profile path below '' and 'tabs' path:
{
path: 'profile',
redirectTo: '/tabs/(profile:profile)',
pathMatch: 'full'
}
Now I am able to navigate to profile with
this.router.navigate(['profile']);
I forgot to add this path in tabs.router.module.ts. Because of that I was getting mentioned error