📜  项目依赖树可能有问题.这可能不是 Create React App 中的错误,而是您需要在本地修复的错误. - Javascript代码示例

📅  最后修改于: 2022-03-11 15:04:15.684000             🧑  作者: Mango

代码示例3
/* 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": "",
/* with */
  "react-scripts": "1.1.4",
/*
  Then run npm install and after that npm start
*/