I have setup when I open ‘/’ (root) of app it redirects to /tabs/search, when I open /tabs it redirect to /tabs/search, then I press F5 (reload) or directly input /tabs/search it fails with 404. What need to be fixed?
app-routing.module:
const routes: Routes = [
{
path: '',
loadChildren: () => import('./pages/tabs/tabs.module').then(m => m.TabsPageModule),
},
{
path: 'login',
loadChildren: '../login/login.module#LoginPageModule'
},
// ...
{
path: '**',
redirectTo: 'login'
},