import { NgModule } from '@angular/core'; import { ServerModule } from '@angular/platform-server'; import { <%= appModuleName %> } from '<%= appModulePath %>'; import { <%= appComponentName %> } from '<%= appComponentPath %>'; @NgModule({ imports: [ <%= appModuleName %>, ServerModule, ], bootstrap: [<%= appComponentName %>], }) export class AppServerModule {}