0.1.0 • Published 6 months ago

@dlkh/core-lib v0.1.0

Weekly downloads
-
License
-
Repository
-
Last release
6 months ago

How to use library

1. Install dependency

npm install @dlkh/core-lib@latest

2. Import to app.module.ts

import { CoreLibModule } from '@dlkh/core-lib';
@NgModule({
  imports: [
    CoreLibModule.forRoot(environment)
  ]
})
export class AppModule { }

2. Register route to app-routing.module.ts

const routes: Routes = [
  {
    path: 'account',
    pathMatch: 'full',
    loadChildren: () => import('@dlkh/core-lib').then(m => m.CoreLibModule)
  }
];

Change logs

0.1.0 Initial release

  • Auth and Guest guards
0.1.0

6 months ago