반응형
webpack 설치 / 환경 설정 중 아래 코드가 계속 에러가 났다.
아래의 pmmmwh ~ 을 실행시켜야하는데 오류가 뜸..
$ npm install -D @pmmmwh/react-refresh-webpack-plugin
오류 메세지 : unable to resolve dependency tree
dependency tree를 잘 찾지 못한다는 것 같다.
해결 방법 : 아래 명령어 실행
npm install -D @pmmmwh/react-refresh-webpack-plugin --save --legacy-peer-deps
위의 코드를 실행해주니 해결이 되었다!!
반응형