@nx/react:setup-ssr

Create the additional configuration required to enable SSR via Express for a React 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 @nx/react:setup-ssr ...
Nx 15 and lower use @nrwl/ instead of @nx/

Show what will be generated without writing to disk:

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

Options

project

Required
string

The name of the application to add SSR support to.

serverPort

number
Default: 4200

The port for the Express server.

appComponentImportPath

string
Default: app/app

The import path of the <App/ > component, relative to project sourceRoot.

extraInclude

Hidden
Array<string>
Default: []

Extra include entries in tsconfig.

skipFormat

boolean

Skip formatting the workspace after the generator completes.