Usage
1nx generate application ...
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
Examples
Generate apps/myorg/myapp
and apps/myorg/myapp-e2e
:
1nx g app myapp --directory=myorg
2
Options
name
Required
string
Pattern:
^[a-zA-Z].*$
The name of the application.
framework
uiFramework
string
Default:
react
Accepted values:
none
, react
, web
, nest
The framework to use for the application.
directory
string
The directory to nest the app under.
e2eTestRunner
string
Default:
cypress
Accepted values:
none
, cypress
The e2e test runner to use.
monorepo
boolean
Creates an integrated monorepo.
style
s
string
Default:
css
The file extension to be used for style files.
tags
t
string
Add tags to the application (used for linting).
unitTestRunner
string
Default:
jest
Accepted values:
none
, jest
The unit test runner to use.
rootProject
Internal
boolean
No description available.