@nx/rspack:application
React + Rspack application generator.
Monorepo World: October 7, 2024Monorepo World: October 7, 2024Join us!
React + Rspack application generator.
1nx generate application ...
2
1nx g app ... #same
2
By default, Nx will search for application
in the default collection provisioned in workspace.json.
You can specify the collection explicitly as follows:
1nx g @nx/rspack:application ...
2
Show what will be generated without writing to disk:
1nx g application ... --dry-run
2
Generate apps/myorg/myapp
and apps/myorg/myapp-e2e
:
1nx g app myapp --directory=myorg
2
^[a-zA-Z].*$
The name of the application.
react
none
, react
, web
, nest
The framework to use for the application.
The directory to nest the app under.
cypress
none
, cypress
The e2e test runner to use.
Creates an integrated monorepo.
css
The file extension to be used for style files.
Add tags to the application (used for linting).
jest
none
, jest
The unit test runner to use.
No description available.