From 89857be0a41c82a9120e8c7a354f92a33d210225 Mon Sep 17 00:00:00 2001 From: yuguoqiang Date: Tue, 14 Jan 2025 17:24:45 +0800 Subject: [PATCH] Add Install Dependencies Step --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f4da3c4c..ddb182d7 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,17 @@ This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next ## Getting Started -First, run the development server: +First, install dependencies: + +```bash +npm install +# or +yarn install +# or +pnpm install +``` + +Second, run the development server: ```bash npm run dev @@ -32,3 +42,4 @@ You can check out [the Next.js GitHub repository](https://github.com/vercel/next The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. +