656 B
656 B
Examples
{% tabs %} {% tab label="Simple Application" %}
Create an application named my-app:
nx g @nrwl/web:application my-app
{% /tab %}
{% tab label="Application using Vite as bundler" %}
Create an application named my-app:
nx g @nrwl/web:app my-app --bundler=vite
{% /tab %}
{% tab label="Specify directory" %}
Create an application named my-app in the my-dir directory:
nx g @nrwl/web:app my-app --directory=my-dir
{% /tab %}
{% tab label="Add tags" %}
Add tags to the application (used for linting).
nx g @nrwl/web:app my-app --tags=scope:admin,type:ui
{% /tab %} {% /tabs %}