[babel] error: Requires Babel "^7.0.0-0", but was loaded with "6.26.3". If you are sure you have a compatible version of @babel/core...
😥 문제 상황
Error: Requires Babel "^7.0.0-0", but was loaded with "6.26.3". If you are sure you have a compatible version of @babel/core, it is likely that something in your build process is loading the wrong version. Inspect the stack trace of this error to look for the first entry that doesn't mention "@babel/core" or "babel-core" to see what is calling Babel.
해당 에러를 보니 바벨 버전에 문제가 있다고 한다...
npm uninstall babel-cli babel-core
npm install babel-cli babel-core@^7.0.0-bridge.0
😤 해결 방법
나는 다음과 같이 입력을 했음에도 계속 위와 같은 에러가 발생했다.
npm uninstall babel-cli babel-core
그래서 위의 명령어 대신 다음과 같이 작성해주었다.
npm uninstall @babel-cli @babel-core
제대로 삭제되었는지, 또는 제대로 설치되었는지 보고 싶다면 package-lock.json
파일에서 ctrl+F
해서 babel-core
입력 후 참고하면 된다.
이제 잘 나온다... 😵 하루 종일 이 에러만 해결했다 !!!
버전을 유의합시다..
Author And Source
이 문제에 관하여([babel] error: Requires Babel "^7.0.0-0", but was loaded with "6.26.3". If you are sure you have a compatible version of @babel/core...), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@muz/Error-Requires-Babel-7.0.0-0-but-was-loaded-with-6.26.3.-If-you-are-sure-you-have-a-compatible-version-of-babelcore저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)