From 40340667a980b1b273c757fbac337fd6db6288e2 Mon Sep 17 00:00:00 2001 From: watercubz Date: Mon, 3 Feb 2025 14:09:21 -0400 Subject: [PATCH 1/2] feat(learn): A new section has been added to start a new project with vite.js --- src/content/learn/start-a-new-react-project.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/content/learn/start-a-new-react-project.md b/src/content/learn/start-a-new-react-project.md index 1eb263618b1..61abb08db4b 100644 --- a/src/content/learn/start-a-new-react-project.md +++ b/src/content/learn/start-a-new-react-project.md @@ -47,6 +47,16 @@ If you're new to Next.js, check out the [learn Next.js course.](https://nextjs.o Next.js is maintained by [Vercel](https://vercel.com/). You can [deploy a Next.js app](https://nextjs.org/docs/app/building-your-application/deploying) to any Node.js or serverless hosting, or to your own server. Next.js also supports a [static export](https://nextjs.org/docs/pages/building-your-application/deploying/static-exports) which doesn't require a server. +### Vite {/*vite*/} + + +npm create vite@latest + + +If you're new to React, check out the [learn React course.](https://react.dev/learn) + +Vite is a **frontend project builder** optimized for rapid development in **React** and other modern frameworks. It focuses on providing an agile and efficient experience. + ### Remix {/*remix*/} **[Remix](https://remix.run/) is a full-stack React framework with nested routing.** It lets you break your app into nested parts that can load data in parallel and refresh in response to the user actions. To create a new Remix project, run: From fffbfd4f76ac54e223a1dec0833b1bd6c21ddd17 Mon Sep 17 00:00:00 2001 From: watercubz Date: Mon, 3 Feb 2025 14:12:38 -0400 Subject: [PATCH 2/2] feat(learn): A new section has been added to start a new project with vite.js --- src/content/learn/start-a-new-react-project.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/content/learn/start-a-new-react-project.md b/src/content/learn/start-a-new-react-project.md index 61abb08db4b..b13ee3a636c 100644 --- a/src/content/learn/start-a-new-react-project.md +++ b/src/content/learn/start-a-new-react-project.md @@ -57,6 +57,7 @@ If you're new to React, check out the [learn React course.](https://react.dev/le Vite is a **frontend project builder** optimized for rapid development in **React** and other modern frameworks. It focuses on providing an agile and efficient experience. + ### Remix {/*remix*/} **[Remix](https://remix.run/) is a full-stack React framework with nested routing.** It lets you break your app into nested parts that can load data in parallel and refresh in response to the user actions. To create a new Remix project, run: