22 lines
349 B
Markdown
22 lines
349 B
Markdown
## Examples
|
|
|
|
{% tabs %}
|
|
{% tab label="Create static page in an app" %}
|
|
|
|
```shell
|
|
nx g page my-page --project=my-app
|
|
```
|
|
|
|
{% /tab %}
|
|
{% tab label="Create dynamic page in an app" %}
|
|
|
|
The following creates a page under `apps/my-app/pages/products/[id].tsx`.
|
|
|
|
```shell
|
|
nx g page "[id]" --project=my-app --directory=products
|
|
```
|
|
|
|
{% /tab %}
|
|
|
|
{% /tabs %}
|