nx/packages/react/docs/application-examples.md
2022-11-21 13:18:40 -05:00

723 B

Examples

{% tabs %} {% tab label="Simple Application" %}

Create an application named my-app:

nx g @nrwl/react:application my-app

{% /tab %}

{% tab label="Application using Vite as bundler" %}

Create an application named my-app:

nx g @nrwl/react:app my-app --bundler=vite

{% /tab %}

{% tab label="Specify directory and style extension" %}

Create an application named my-app in the my-dir directory and use scss for styles:

nx g @nrwl/react:app my-app --directory=my-dir --style=scss

{% /tab %}

{% tab label="Add tags" %}

Add tags to the application (used for linting).

nx g @nrwl/react:app my-app --tags=scope:admin,type:ui

{% /tab %} {% /tabs %}