Skip to content

Instantly share code, notes, and snippets.

/app.module.ts Secret

Created January 18, 2018 15:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/65be47bfcce58de2b6f05428560da49c to your computer and use it in GitHub Desktop.
Save anonymous/65be47bfcce58de2b6f05428560da49c to your computer and use it in GitHub Desktop.
import { BrowserModule } from '@angular/platform-browser';
import {CUSTOM_ELEMENTS_SCHEMA, NgModule} from '@angular/core';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
AppRoutingModule
],
providers: [],
bootstrap: [AppComponent],
schemas: [
CUSTOM_ELEMENTS_SCHEMA
],
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment