Answers for "There might be a problem with the project dependency tree. It is likely not a bug in Create React App, but something you need to fix locally."

1

There might be a problem with the project dependency tree. It is likely not a bug in Create React App, but something you need to fix locally.

Hi , I am Alamin ! in my case i solve my problem in these way
Hope  this will work for you :) 

SOLUTION:
=========
create a .env at the root of the folder of react APP folder
type SKIP_PREFLIGHT_CHECK=true in side .env file
now run in cmd npm start .


[email protected]
Posted by: Guest on June-01-2021
2

There might be a problem with the project dependency tree. It is likely not a bug in Create React App, but something you need to fix locally.

/* Answer to: "There might be a problem with the project dependency tree. It is likely not a bug in Create React App, but something you need to fix locally." */

/*
  Go to your "package.json" file.
  Replace
*/
  "react-scripts": "<whatever-is-currently-here>",
/* with */
  "react-scripts": "1.1.4",
/*
  Then run npm install and after that npm start
*/
Posted by: Guest on April-12-2020
0

If you would prefer to ignore this check, add SKIP_PREFLIGHT_CHECK=true to an .env file in your project. That will permanently disable this message but you might encounter other issues.

// first run in terminal:
 yarn add --dev dotenv
 
// create .env file in root directory 
// then add below line in the .env file
 SKIP_PREFLIGHT_CHECK=true
Posted by: Guest on June-10-2020

Code answers related to "There might be a problem with the project dependency tree. It is likely not a bug in Create React App, but something you need to fix locally."

Code answers related to "Javascript"

Browse Popular Code Answers by Language