Created
October 10, 2017 12:58
-
-
Save evertonrobertoauler/96e32de252ad7c32f737ab21e06d188c to your computer and use it in GitHub Desktop.
universal-demo-v5/src/app/app.server.module.ts 3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { NgModule } from '@angular/core'; | |
| import { ServerModule, ServerTransferStateModule } from '@angular/platform-server'; | |
| import { AppModule } from './app.module'; | |
| import { AppComponent } from './app.component'; | |
| @NgModule({ | |
| imports: [ | |
| AppModule, | |
| ServerModule, | |
| ServerTransferStateModule | |
| ], | |
| bootstrap: [AppComponent], | |
| }) | |
| export class AppServerModule { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment