mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-09-22 05:50:48 +02:00
Update app-routing.module.ts
Added import statement for Pages-Module to ensure it is correctly imported
This commit is contained in:
parent
6363d5171d
commit
b41387ca0e
1 changed files with 2 additions and 1 deletions
|
@ -8,6 +8,7 @@ import {
|
|||
NbRequestPasswordComponent,
|
||||
NbResetPasswordComponent,
|
||||
} from '@nebular/auth';
|
||||
import { PagesModule } from './pages/pages.module';
|
||||
|
||||
export const routes: Routes = [
|
||||
{
|
||||
|
@ -54,7 +55,7 @@ const config: ExtraOptions = {
|
|||
};
|
||||
|
||||
@NgModule({
|
||||
imports: [RouterModule.forRoot(routes, config)],
|
||||
imports: [RouterModule.forRoot(routes, config), PagesModule],
|
||||
exports: [RouterModule],
|
||||
})
|
||||
export class AppRoutingModule {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue