File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -52,35 +52,35 @@ export const routes: Routes = [
52
52
children : [
53
53
{
54
54
path : 'base' ,
55
- loadChildren : './views/base/base.module#BaseModule'
55
+ loadChildren : ( ) => import ( './views/base/base.module' ) . then ( m => m . BaseModule )
56
56
} ,
57
57
{
58
58
path : 'buttons' ,
59
- loadChildren : './views/buttons/buttons.module#ButtonsModule'
59
+ loadChildren : ( ) => import ( './views/buttons/buttons.module' ) . then ( m => m . ButtonsModule )
60
60
} ,
61
61
{
62
62
path : 'charts' ,
63
- loadChildren : './views/chartjs/chartjs.module#ChartJSModule'
63
+ loadChildren : ( ) => import ( './views/chartjs/chartjs.module' ) . then ( m => m . ChartJSModule )
64
64
} ,
65
65
{
66
66
path : 'dashboard' ,
67
- loadChildren : './views/dashboard/dashboard.module#DashboardModule'
67
+ loadChildren : ( ) => import ( './views/dashboard/dashboard.module' ) . then ( m => m . DashboardModule )
68
68
} ,
69
69
{
70
70
path : 'icons' ,
71
- loadChildren : './views/icons/icons.module#IconsModule'
71
+ loadChildren : ( ) => import ( './views/icons/icons.module' ) . then ( m => m . IconsModule )
72
72
} ,
73
73
{
74
74
path : 'notifications' ,
75
- loadChildren : './views/notifications/notifications.module#NotificationsModule'
75
+ loadChildren : ( ) => import ( './views/notifications/notifications.module' ) . then ( m => m . NotificationsModule )
76
76
} ,
77
77
{
78
78
path : 'theme' ,
79
- loadChildren : './views/theme/theme.module#ThemeModule'
79
+ loadChildren : ( ) => import ( './views/theme/theme.module' ) . then ( m => m . ThemeModule )
80
80
} ,
81
81
{
82
82
path : 'widgets' ,
83
- loadChildren : './views/widgets/widgets.module#WidgetsModule'
83
+ loadChildren : ( ) => import ( './views/widgets/widgets.module' ) . then ( m => m . WidgetsModule )
84
84
}
85
85
]
86
86
} ,
You can’t perform that action at this time.
0 commit comments