목차1. 설치 방법2. 오류 내용3. 해결 방법 Next.js 15 프로젝트에서 @toast-ui/react-editor 설치 시 ERESOLVE unable to resolve dependency tree 오류가 발생할 수 있습니다. 이 오류는 프로젝트의 React 버전이 18인 반면, @toast-ui/react-editor는 React 17을 요구하여 종속성 충돌이 발생하기 때문입니다. 아래는 이를 해결하는 방법과 서버 측 렌더링 환경에서의 설정 방법을 다룹니다.1. 설치 방법- 라이브러리 설치npm install --save @toast-ui/react-editor - 코드 샘플import '@toast-ui/editor/dist/toastui-editor.css';import { Editor }..