chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:38:36 +08:00
commit 8e2a6eb840
10194 changed files with 1593658 additions and 0 deletions
@@ -0,0 +1,35 @@
## Examples
##### Simple Application
Create an application named `my-app`:
```bash
nx g @nx/react:application apps/my-app
```
##### Application using Vite as bundler
Create an application named `my-app`:
```bash
nx g @nx/react:app apps/my-app --bundler=vite
```
When choosing `vite` as the bundler, your unit tests will be set up with `vitest`, unless you choose `none` for `unitTestRunner`.
##### Specify style extension
Create an application named `my-app` in the `my-dir` directory and use `scss` for styles:
```bash
nx g @nx/react:app apps/my-dir/my-app --style=scss
```
##### Add tags
Add tags to the application (used for linting).
```bash
nx g @nx/react:app apps/my-app --tags=scope:admin,type:ui
```