@nrwl/rspack:configuration

Usage

nx generate configuration ...

By default, Nx will search for configuration in the default collection provisioned in workspace.json.

You can specify the collection explicitly as follows:

nx g @nrwl/rspack:configuration ...

Show what will be generated without writing to disk:

nx g configuration ... --dry-run

Options

project

Required
string

The name of the project.

main

string

Path relative to the workspace root for the main entry file. Defaults to '<projectRoot>/src/main.ts'.

tsConfig

string

Path relative to the workspace root for the tsconfig file to build with. Defaults to '<projectRoot>/tsconfig.app.json'.

devServer

boolean
Default: false

Add a serve target to run a local rspack dev-server

style

string
Accepted values: none, css, scss, less

The style solution to use.

target

string
Default: web
Accepted values: node, web

Target platform for the build, same as the rspack config option.

uiFramework

string
Accepted values: none, react

The UI framework used by the project.