[トラブルシューティング]npm installインストール時npm ERR!code ERESOLVE

930 ワード

react Appの実行時にnode modulesをインストールするnpm install入力時
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR! 
npm ERR! While resolving: [email protected]
npm ERR! Found: [email protected]
npm ERR! node_modules/react
npm ERR!   react@"^18.0.0" from the root project
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer react@"<18.0.0" from @testing-library/[email protected]
npm ERR! node_modules/@testing-library/react
npm ERR!   @testing-library/react@"^12.1.4" from the root project
エラーが発生しました.たとえば
これは反応バージョンの問題によるようです.npm installの後に --save --legacy-peer-depsと入力すればいいです
npm install --save --legacy-peer-deps