Skip to content

Instantly share code, notes, and snippets.

@baunov
Created June 14, 2020 12:54
Show Gist options
  • Save baunov/777da6a23e76932edff5a2712cf822ae to your computer and use it in GitHub Desktop.
Save baunov/777da6a23e76932edff5a2712cf822ae to your computer and use it in GitHub Desktop.
import { NgModule } from '@angular/core';
import { ServerModule } from '@angular/platform-server';
import { AppModule } from './app.module';
import { AppComponent } from './app.component';
import { MetadataService } from './metadata.service';
@NgModule({
imports: [
AppModule,
ServerModule,
],
providers: [MetadataService],
bootstrap: [AppComponent],
})
export class AppServerModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment