Usage
1nx generate configuration ...
2
By default, Nx will search for configuration
in the default collection provisioned in workspace.json.
You can specify the collection explicitly as follows:
1nx g @nx/rspack:configuration ...
2
Show what will be generated without writing to disk:
1nx g configuration ... --dry-run
2
Options
project
The name of the project.
framework
none
, react
, web
, nest
The framework used by the project.
main
Path relative to the workspace root for the main entry file. Defaults to '<projectRoot>/src/main.ts'.
tsConfig
Path relative to the workspace root for the tsconfig file to build with. Defaults to '<projectRoot>/tsconfig.app.json'.
buildTarget
The build target of the project to be transformed to use the @nrwl/vite:build executor.
devServer
false
Add a serve target to run a local rspack dev-server
newProject
false
Is this a new project?
style
none
, css
, scss
, less
The style solution to use.
serveTarget
The serve target of the project to be transformed to use the @nrwl/vite:dev-server and @nrwl/vite:preview-server executors.
target
web
node
, web
Target platform for the build, same as the rspack config option.
rootProject
No description available.