Base solution for your next web application
Open Closed

How to change default page from dashboard to other? #7776


User avatar
0
xitix created

default dashboard page : /app/main/dashboard

expected page as dashboar[default] : /app/main/assetdashboard


2 Answer(s)
  • User Avatar
    0
    musa.demir created

    Its defined in root-routing.module.ts.

    const routes: Routes = [
        { path: '', redirectTo: '/app/main/dashboard', pathMatch: 'full' },//change that route
        ...   
    ];
    
  • User Avatar
    0
    ismcagdas created
    Support Team

    This issue is closed because it has not had recent activity for a long time.