aboutsummaryrefslogtreecommitdiff
path: root/Timeline/ClientApp/src/app/app.server.module.ts
blob: cfb0e021a907299ec19ecb7a5451201531d95a7d (plain)
1
2
3
4
5
6
7
8
9
10
11
import { NgModule } from '@angular/core';
import { ServerModule } from '@angular/platform-server';
import { ModuleMapLoaderModule } from '@nguniversal/module-map-ngfactory-loader';
import { AppComponent } from './app.component';
import { AppModule } from './app.module';

@NgModule({
    imports: [AppModule, ServerModule, ModuleMapLoaderModule],
    bootstrap: [AppComponent]
})
export class AppServerModule { }