마모리(My Memory) 프로젝트
[react native / 리액트 네이티브] 에러 Error: Reanimated 2 failed to create a worklet, maybe you forgot to add Reanimated's babel plugin?
huipark
2023. 7. 13. 18:44
react-native-reanimated
를 설치하고 나니 아래와 같은 에러가 난다
Error: Reanimated 2 failed to create a worklet, maybe you forgot to add Reanimated's babel plugin?...
babel.config.js을 수정하지 않아서 나는 오류다
해결 방안
babel.config.js
module.exports = {
presets: ['module:metro-react-native-babel-preset'],
plugins: ['react-native-reanimated/plugin'],
};
위와 같이 plugins를 수정해 준다