Skip to content

Instantly share code, notes, and snippets.

@daleyjem
Created January 25, 2018 15:34
Show Gist options
  • Save daleyjem/f39f1e903cc116504b8017b51f309630 to your computer and use it in GitHub Desktop.
Save daleyjem/f39f1e903cc116504b8017b51f309630 to your computer and use it in GitHub Desktop.
import { NgModule } from '@angular/core';
import { ServerModule } from '@angular/platform-server';
import { AppModule } from './app.module';
import { AppComponent } from './app.component';
@NgModule({
imports: [
ServerModule,
AppModule
],
bootstrap: [AppComponent]
})
export class AppServerModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment