문제 상황 리액트 실습 마지막 강의에서 api 연결을 하는 부분에서 오류가 났습니다. 해결 방법멘토님이 보내주신 url 입니다.[Webpack] BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default해당 튜토리얼을 진행하다가 발생한 에러입니다. create-react-app으로 리액트 프로젝트 생성 후, useEffect() 안에 web3 실행시키는 코드 작성하고 yarn start 했더니, 낭자하는 에러들.... 좌우간 여기서 중요한 에러 코드는 아래였다. webpack 버전 5 이전에는 폴리필 기능을 자동으로 제공했지만, 이후 버전부터는 폴리필을 수동으로 구성해야 한다.https://velog.io/@jaewoneee/Webpack제가 해결하는데 참고한 링크입니다.ERROR in ./node_modules/axios/lib/adapters/http.jsCompiled with problems: ERROR in ./node_modules/axios/lib/adapters/http.js 11:11-26 Module not found: Error: Can't resolve 'http' in 'H:\Github\arshwy\reactjs-laravel-simple-dashboard\frontend-react\node_modules\axios\lib\adapters' Did you mean './http'? Requests that should resolve in the current directory need to start with './'. Requests that start with a name are treated as module requests and resolve within module directories (node_modules, H:\Github\arshwy\reactjs-laravel-simple-dashboard\frontend-react\node_modules).https://stackoverflow.com/questions/71590885/error-in-node-modules-axios-lib-adapters-http-js