Skip to content

Instantly share code, notes, and snippets.

@phenomnomnominal
Last active March 10, 2019 10:21
Show Gist options
  • Save phenomnomnominal/10aee045be75004c1d06482d00b37624 to your computer and use it in GitHub Desktop.
Save phenomnomnominal/10aee045be75004c1d06482d00b37624 to your computer and use it in GitHub Desktop.
import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
@NgModule({
imports: [
RouterModule.forChild([{
path: '',
loadChildren: './lazy/lazy.module#LazyModule'
}])
]
})
export class MyModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment