Skip to content

Commit

Permalink
fix(@schematics/angular): replace provideServerSupport with `provid…
Browse files Browse the repository at this point in the history
…eServerRendering`

Update `provideServerSupport` with `provideServerRendering` as the former has been renamed.
  • Loading branch information
alan-agius4 authored and angular-robot[bot] committed Apr 6, 2023
1 parent 0eac98f commit de6d301
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
*/

import { mergeApplicationConfig, ApplicationConfig } from '@angular/core';
import { provideServerSupport } from '@angular/platform-server';
import { provideServerRendering } from '@angular/platform-server';
import { appConfig } from './app.config';

const serverConfig: ApplicationConfig = {
providers: [
provideServerSupport()
provideServerRendering()
]
};

Expand Down

0 comments on commit de6d301

Please sign in to comment.