Created
August 29, 2019 19:40
-
-
Save nanotroy/5aa977c0e45c49c5ffd59b97457136a4 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 { AppComponent } from './app.component'; | |
import { AppModule } from './app.module'; | |
import { NgModule } from '@angular/core'; | |
import { BrowserModule } from '@angular/platform-browser'; | |
@NgModule({ | |
bootstrap: [AppComponent], | |
imports: [ | |
BrowserModule.withServerTransition({appId: 'app-root'}), | |
AppModule, | |
] | |
}) | |
export class AppBrowserModule {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment