Skip to content

Instantly share code, notes, and snippets.

@buildmotion
Last active April 3, 2018 08:08
Show Gist options
  • Save buildmotion/aa964dceae5ad4fa2afabbbbc604b263 to your computer and use it in GitHub Desktop.
Save buildmotion/aa964dceae5ad4fa2afabbbbc604b263 to your computer and use it in GitHub Desktop.
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { BrowserModule } from '@angular/platform-browser';
import { NxModule } from '@nrwl/nx';
import { BuildMotionLoggingModule } from '@buildmotion/logging';
@NgModule({
imports: [
BrowserModule,
BuildMotionLoggingModule,
NxModule.forRoot()
],
declarations: [AppComponent],
bootstrap: [AppComponent]
})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment