[웹] Material UI 사용하기

SeomIII·2022년 5월 21일
0

SONSU

목록 보기
20/29

📝 지현님의 코드를 염탐하다가 뒤늦게 알아버린 material ui를 사용해보려고 한다.

📌 material ui 설치

npm install @material-ui/core
npm install @material-ui/icons
  • 모두가 이렇게 설치하라고 했지만 대차게 오류가 났다.
  • fix the upstream dependency conflict, or retry
    npm ERR! this command with --force, or --legacy-peer-deps
    npm ERR! to accept an incorrect (and potentially broken) dependency resolution.

  • 오류 사항에도 'command with --force, or --legacy-peer-deps' 이라고 기재되어 있었고, 지현님의 필기 덕분에 해결할 수 있었다.
npm install @material-ui/core --save --legacy-peer-deps

npm install @material-ui/icons --save --legacy-peer-deps

  • 설치가 완료되면 이렇게 node_modules에 이렇게 뜬다!
profile
FE Programmer

0개의 댓글