We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The final content of AppComponent:
import { Component } from '@angular/core'; @Component({ selector: 'app-root', template: ` <abp-loader-bar></abp-loader-bar> <abp-dynamic-layout></abp-dynamic-layout> `, }) export class AppComponent {}
The final content of AppRoutingModule:
import { NgModule } from '@angular/core'; import { RouterModule, Routes } from '@angular/router'; const routes: Routes = [ { path: '', pathMatch: 'full', loadChildren: () => import('./home/home.module').then((m) => m.HomeModule), }, { path: 'account', loadChildren: () => import('@abp/ng.account').then((m) => m.AccountModule.forLazy({ redirectUrl: '/' })), }, { path: 'identity', loadChildren: () => import('@abp/ng.identity').then((m) => m.IdentityModule.forLazy()), }, { path: 'tenant-management', loadChildren: () => import('@abp/ng.tenant-management').then((m) => m.TenantManagementModule.forLazy()), }, { path: 'setting-management', loadChildren: () => import('@abp/ng.setting-management').then((m) => m.SettingManagementModule.forLazy()), }, ]; @NgModule({ imports: [RouterModule.forRoot(routes)], exports: [RouterModule], }) export class AppRoutingModule {}
The text was updated successfully, but these errors were encountered:
mehmet-erim
No branches or pull requests
The final content of AppComponent:
The final content of AppRoutingModule:
The text was updated successfully, but these errors were encountered: