리액트 프로젝트에 Storybook을 세팅하고 yarn start을 하자 아래와 같은 오류가 발생했다...
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.... 어쩌고
> npm ls babel-loader
@storybook과 react-scripts의 babel-loader 버전이 서로 달라서 발생하는 오류인 것 같다.
...
"resolutions": { "babel-loader": "8.1.0" }// react-scripts에서 요구하는 버전
...
잘 실행된다!! 😃