오류모음

babel 오류

테오구 2022. 1. 5. 15:44
728x90

The react-scripts package provided by Create React App requires a dependency:

  "babel-jest": "^26.6.0"

Don't try to install it manually: your package manager does it automatically.
However, a different version of babel-jest was detected higher up in the tree:

  /home/seung/node_modules/babel-jest (version: 27.4.5)

 

해결책

npm uninstall -g babel-jest and yarn global remove babel-jest

 

.env파일에

SKIP_PREFLIGHT_CHECK=true

그 후

npm run build

728x90