Skip to content

Instantly share code, notes, and snippets.

@phenomnomnominal
Created March 10, 2019 10:23
Show Gist options
  • Save phenomnomnominal/2bb850d237283b67883c7d303f6d8c24 to your computer and use it in GitHub Desktop.
Save phenomnomnominal/2bb850d237283b67883c7d303f6d8c24 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: () => import('./lazy/lazy.module').then(m => m.LazyModule)
}])
]
})
export class MyModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment