menu
menuAPI
Bootstraps an application using provided NgModule and serializes the page content to string.
function renderModule<T>(
moduleType: Type<T>,
options: {
document?: string | Document | undefined;
url?: string | undefined;
extraProviders?: StaticProvider[] | undefined;
allowedHosts?: string[] | undefined;
},
): Promise<string>;{ document?: string | Document | undefined; url?: string | undefined; extraProviders?: StaticProvider[] | undefined; allowedHosts?: string[] | undefined; }Additional configuration for the render operation:
document - the document of the page to render, either as an HTML string or
as a reference to the document instance.url - the URL for the current render request.extraProviders - set of platform level providers for the current render request.allowedHosts - the allowed hosts list for host validation in server-side rendering.Promise<string>