Created
August 1, 2017 13:57
-
-
Save cyrilletuzi/8df6ba4b54e13dfc90600d3c7c0ec1ca to your computer and use it in GitHub Desktop.
This file contains 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 } 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