Skip to content

Instantly share code, notes, and snippets.

@nanotroy
Created August 29, 2019 19:40
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 nanotroy/5aa977c0e45c49c5ffd59b97457136a4 to your computer and use it in GitHub Desktop.
Save nanotroy/5aa977c0e45c49c5ffd59b97457136a4 to your computer and use it in GitHub Desktop.
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