mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
11 lines
297 B
TypeScript
11 lines
297 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 {}
|