You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
특정 폴더의 하위 폴더에서 vite로 리액트 프로젝트 생성 후, yarn 명령어를 사용하여 인스톨하려니 다음과 같은 에러 메시지가 발생하였다.
$ yarn install
// ... 다른 에러 메시지 해결방법
Finally, if C:\Users\REASON is fine and you intend (프로젝트 경로) to be treated
as a completely separate project (not even a workspace),
create an empty yarn.lock file in it.
루트 폴더에 package.json이 없는데도 문제가 발생하고 있었지만,
이런 상황에서도 해결할 수 있는 방안을 알려주고 있었다.
친절한 에러 메시지 덕분에 알려준 방법을 사용하여 해결했다.
If C:\Users\REASON isn't intended to be a project,
remove any yarn.lock and/or package.json file there.
프로젝트 경로에 yarn.lock 빈 파일을 생성후 yarn 명령어를 사용하면
정상적으로 프로젝트 환경을 구성할 수 있다.
The text was updated successfully, but these errors were encountered:
이슈
특정 폴더의 하위 폴더에서 vite로 리액트 프로젝트 생성 후,
yarn
명령어를 사용하여 인스톨하려니 다음과 같은 에러 메시지가 발생하였다.루트 폴더에 package.json이 없는데도 문제가 발생하고 있었지만,
이런 상황에서도 해결할 수 있는 방안을 알려주고 있었다.
친절한 에러 메시지 덕분에 알려준 방법을 사용하여 해결했다.
프로젝트 경로에
yarn.lock
빈 파일을 생성후yarn
명령어를 사용하면정상적으로 프로젝트 환경을 구성할 수 있다.
The text was updated successfully, but these errors were encountered: