You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

14 line
329 B

  1. import { NgModule } from '@angular/core';
  2. import { ServerModule } from '@angular/platform-server';
  3. import { AppModule } from "./app.module";
  4. import { AppComponent } from './app.component';
  5. @NgModule({
  6. imports: [
  7. AppModule,
  8. ServerModule
  9. ],
  10. bootstrap: [AppComponent]
  11. })
  12. export class AppServerModule {}