늘 겸손하게

React - Module not found: Can't resolve '@mui/material/utils' : (v5, which included a name change.) 본문

Programming/React

React - Module not found: Can't resolve '@mui/material/utils' : (v5, which included a name change.)

besforyou999 2022. 7. 12. 22:33

React MUI 라이브러리를 사용하려는 도중 ../Papers 모듈을 못 찾겠다는 에러가 무수히 출력되었습니다. 찾아보니 MUI icons package를 MUI component library보다 먼저 설치하여 발생하는 문제랍니다.

 

 

해결책

 

아래 코드로 필요한 패키지를 설치합니다

// with npm
npm install @mui/material @emotion/react @emotion/styled

// or if you prefer yarn
yarn add @mui/material @emotion/react @emotion/styled