Skip to content

Instantly share code, notes, and snippets.

@cyrilletuzi
Created August 1, 2017 13:57
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 cyrilletuzi/8df6ba4b54e13dfc90600d3c7c0ec1ca to your computer and use it in GitHub Desktop.
Save cyrilletuzi/8df6ba4b54e13dfc90600d3c7c0ec1ca 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: [
AppModule,
ServerModule
],
bootstrap: [AppComponent]
})
export class AppServerModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment