@nrwl/angular:setup-ssr

Create the additional configuration required to enable SSR via Angular Universal for an Angular application.

Usage

nx generate setup-ssr ...

By default, Nx will search for setup-ssr in the default collection provisioned in workspace.json.

You can specify the collection explicitly as follows:

nx g @nrwl/angular:setup-ssr ...

Show what will be generated without writing to disk:

nx g setup-ssr ... --dry-run

Options

appId

string
Default: serverAppFormat: html-selector

The appId to use with withServerTransition.

main

string
Default: main.server.tsFormat: path

The name of the main entry-point file.

project

Required
string

The name of the application to generate the Angular Universal configuration for.

rootModuleFileName

string
Default: app.server.module.tsFormat: path

The name of the root module file

rootModuleClassName

string
Default: AppServerModule

The name of the root module class.

serverFileName

string
Default: server.ts

The name of the Express server file.

serverPort

number
Default: 4000

The port for the Express server.

skipFormat

boolean

Skip formatting the workspace after the generator completes.