npm run dev
error - Failed to load SWC binary for win32/x64, see more info here: https://nextjs.org/docs/messages/failed-loading-swc
package-lock.json
, node-modules
를 삭제함npm i react react-dom next
설치{
swcMinify: false // it should be false by default
}
{
"presets": ["next/babel"]
}
npm install next@canary
'next'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다.
라는 오류 발생packge-lock.json
파일 삭제npm install next --force
next 다시 설치(force를 붙인 이유는 호환 문제 때문에 자꾸 설치가 안됨)npm run dev
하니 잘 됐음https://stackoverflow.com/questions/69816589/next-failed-to-load-swc-binary
https://britny-no.tistory.com/73
npm install next --force 로 저도 해결