From 02dbf9f7d37dcf7e4ffef532098f0089d86eb06a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20Diaz=20Panori=C3=B1gan?= Date: Sun, 31 Mar 2024 14:31:17 -0700 Subject: [PATCH] README: update create-react-app --> vite (to match about.mdx) --- packages/react/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/react/README.md b/packages/react/README.md index a309ff54..3801d184 100644 --- a/packages/react/README.md +++ b/packages/react/README.md @@ -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 ```