Files
nrwl--nx/packages/next/docs/application-examples.md
T
2026-07-13 12:38:36 +08:00

20 lines
262 B
Markdown

## Examples
##### Create app in a nested directory
```shell
nx g app apps/nested/myapp
```
##### Use a custom Express server
```shell
nx g app apps/myapp --custom-server
```
##### Use plain JavaScript (not TypeScript)
```shell
nx g app apps/myapp --js
```