2021-07-14 18:02:04 +02:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { ServerModule } from '@angular/platform-server';
|
2019-10-24 09:44:29 +02:00
|
|
|
|
2021-07-14 18:02:04 +02:00
|
|
|
import { AppModule } from './app.module';
|
|
|
|
import { AppComponent } from './app.component';
|
2019-10-24 09:44:29 +02:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
AppModule,
|
|
|
|
ServerModule,
|
|
|
|
],
|
|
|
|
bootstrap: [AppComponent],
|
|
|
|
})
|
|
|
|
export class AppServerModule {}
|