Sets up providers necessary to enable server rendering functionality for the application.
API
function provideServerRendering(): EnvironmentProviders;
Usage Notes
Basic example of how you can add server support to your application:
bootstrapApplication(AppComponent, {
providers: [provideServerRendering()]
});