typeerror cannot read properties of undefined (reading 'reactcurrentowner') react three fiber

ROCKBELL·2025년 2월 18일

이슈

목록 보기
2/2

typeerror cannot read properties of undefined (reading 'reactcurrentowner') react three fiber
React 19에서 Next.js 15와 @react-three/fiber를 사용할 때 발생할 수 있는 오류
JSX 인식 오류와 더불어 발생한 오류

원인

React 19의 내부 구조 변경과 @react-three/fiber가 아직 완전히 React 19에 최적화되지 않아서 발생하는 오류

해결방법

@react-three/fiberalpha 버전 설치

npm install @react-three/fiber@alpha
"dependencies": {
 		"@react-three/fiber": "^9.0.0-alpha.8",
 }

추가 오류

primitive 에 onclick 이벤트 핸들러가 동작하지 않는 오류도 발생

=> 현재 25.02.21 기준

"@react-three/drei": "^10.0.0",
"@react-three/fiber": "^9.0.4",

버전으로 업데이트하니 이전의 jsx 인식 문제도 해결된듯하다 ^^;;

0개의 댓글