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.
 
 
 
 

12 line
352 B

  1. import {mergeApplicationConfig, ApplicationConfig} from '@angular/core';
  2. import {provideServerRendering} from '@angular/platform-server';
  3. import {appConfig} from './app.config';
  4. const serverConfig: ApplicationConfig = {
  5. providers: [
  6. provideServerRendering()
  7. ]
  8. };
  9. export const config = mergeApplicationConfig(appConfig, serverConfig);