Added ssg
Copy Files to Samba Share dev / Copy Files (push) Successful in 26s

This commit is contained in:
2024-11-13 11:37:21 +01:00
parent 1b87561e45
commit a9090a3f72
8 changed files with 335 additions and 283 deletions
+11
View File
@@ -0,0 +1,11 @@
import { mergeApplicationConfig, ApplicationConfig } from '@angular/core';
import { provideServerRendering } from '@angular/platform-server';
import { appConfig } from './app.config';
const serverConfig: ApplicationConfig = {
providers: [
provideServerRendering()
]
};
export const config = mergeApplicationConfig(appConfig, serverConfig);