I have the below in my route:
const routes: Routes = [
{ path: '**', redirectTo: 'dashboard' },
{ path: '', component: DashboardComponent },
];
After logging in, I have a white screen until I click on Dashboard Menu. My default Url goes to: https://localhost:44333/ Instead of https://localhost:44333/dashboard
I have checked other examples online and I cannot understand what is wrong with my router. Am I missing out something please?
Why your dashboard has empty path specified
{ path: '', component: DashboardComponent}?? Try