mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
15 lines
353 B
TypeScript
15 lines
353 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { ServerModule } from '@angular/platform-server';
|
|
import { sharedConfig } from './app.module.shared';
|
|
|
|
@NgModule({
|
|
bootstrap: sharedConfig.bootstrap,
|
|
declarations: sharedConfig.declarations,
|
|
imports: [
|
|
ServerModule,
|
|
...sharedConfig.imports
|
|
]
|
|
})
|
|
export class AppModule {
|
|
}
|