Add express-engine

This commit is contained in:
Marc Fokkert
2023-09-23 19:50:03 +02:00
parent 81edcf864e
commit 65ba9919a2
8 changed files with 1396 additions and 137 deletions

View File

@@ -0,0 +1,14 @@
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 {}

2
src/main.server.ts Normal file
View File

@@ -0,0 +1,2 @@
export { AppServerModule } from './app/app.server.module';