Created
October 10, 2017 12:59
-
-
Save evertonrobertoauler/a3ff79bed1e2fc01469a9a81e9290ae2 to your computer and use it in GitHub Desktop.
universal-demo-v5/src/app/app.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 { BrowserModule, BrowserTransferStateModule } from '@angular/platform-browser'; | |
import { HttpClientModule } from '@angular/common/http'; | |
import { NgModule } from '@angular/core'; | |
import { AppComponent } from './app.component'; | |
@NgModule({ | |
declarations: [ | |
AppComponent | |
], | |
imports: [ | |
BrowserModule.withServerTransition({ appId: 'universal-demo-v5' }), | |
HttpClientModule, | |
BrowserTransferStateModule | |
], | |
providers: [], | |
bootstrap: [AppComponent] | |
}) | |
export class AppModule { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment