This repository has been archived on 2023-12-07. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
universal-statuspage/src/app/app.server.module.ts
samuel-p a4542f7abd major refactoring
added universal
added api
2020-05-06 17:25:35 +02:00

14 lines
318 B
TypeScript

import { NgModule } from '@angular/core';
import { ServerModule } from '@angular/platform-server';
import { AppModule } from './app.module';
import { AppComponent } from './app.component';
@NgModule({
imports: [
AppModule,
ServerModule,
],
bootstrap: [AppComponent],
})
export class AppServerModule {}