Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README: update create-react-app --> vite (to match about.mdx) #482

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions packages/react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ Pixi React is an open-source, production-ready library to render high performant

### Quick start

If you want to start a new React project from scratch, we recommend [Create React App](https://github.com/facebook/create-react-app).
If you want to start a new React project from scratch, we recommend [Vite](https://vitejs.dev/guide/).
To add to an existing React application, just install the dependencies:

#### Start New React Project "my-app" with Create React App:
#### Start New React Project "my-app" with Vite:
```bash
# for typescript add "--template typescript"
npx create-react-app my-app
# for typescript use "--template react-ts"
npx create-vite@latest --template react my-app
cd my-app
```

Expand Down
Loading