[ Web Proxy ]
URL:
Viewing: https://angular.dev/api/ssr/node/CommonEngineRenderOptions [Back]  [Original]

CommonEngineRenderOptions Angular Skip to main content
menu
close
more_horiz
menuAPI
@angular/ssr/node

CommonEngineRenderOptions

interface
deprecatedsince v22

Deprecation warning

Use AngularNodeAppEngine or AngularAppEngine instead. Deprecated since v22.

orthos-back.svg [orthos-back.svg]

On this page

    arrow_upward_alt Back to the top

    API

        
          interface CommonEngineRenderOptions {  bootstrap?: Type<{}> | ((context: BootstrapContext) => Promise<ApplicationRef>) | undefined;  providers?: StaticProvider[] | undefined;  url?: string | undefined;  document?: string | undefined;  documentFilePath?: string | undefined;  inlineCriticalCss?: boolean | undefined;  publicPath?: string | undefined;}
        
        

    bootstrap

    Type<{}> | ((context: BootstrapContext) => Promise<ApplicationRef>) | undefined

    A method that when invoked returns a promise that returns an ApplicationRef instance once resolved or an NgModule.

    providers

    StaticProvider[] | undefined

    A set of platform level providers for the current request.

    url

    string | undefined

    document

    string | undefined

    documentFilePath

    string | undefined

    inlineCriticalCss

    boolean | undefined

    Reduce render blocking requests by inlining critical CSS. Defaults to true.

    publicPath

    string | undefined

    Base path location of index file. Defaults to the 'documentFilePath' dirname when not provided.

    Jump to details

    Web Proxy Viewer  |  New URL  |  Original Page