nx/packages/next/docs/application-examples.md

26 lines
338 B
Markdown

## Examples
{% tabs %}
{% tab label="Create app in a directory" %}
```shell
nx g app myapp --directory
```
{% /tab %}
{% tab label="Use a custom Express server" %}
```shell
nx g app myapp --custom-server
```
{% /tab %}
{% tab label="Use plain JavaScript (not TypeScript)" %}
```shell
nx g app myapp --js
```
{% /tab %}
{% /tabs %}