From c9c04357ed0a07c63deea23d02580889d76838aa Mon Sep 17 00:00:00 2001 From: btahir89 Date: Sat, 16 Nov 2024 20:55:21 -0800 Subject: [PATCH] update for dependencies --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 76bcd34..5fce5f8 100644 --- a/README.md +++ b/README.md @@ -69,11 +69,13 @@ cd next-beats 2. Install dependencies: ```bash -npm install +npm install --legacy-peer-deps # or -yarn install +yarn install --legacy-peer-deps ``` +> **Important Note**: We use `--legacy-peer-deps` because the project contains dependencies that require different versions of React (React 16 and React 19). This flag allows npm to bypass peerDependency conflicts and install the packages anyway. While this isn't ideal for production, it's necessary for development until all dependencies are updated to support React 19. + 3. Run the development server: ```bash