11 lines
350 B
Text
Executable file
11 lines
350 B
Text
Executable file
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);
|