본문으로 건너뛰기

Cannot read property 'makeMutable' of undefined

문제상황

  • Cannot read property 'makeMutable' of undefined 에러가 발생

해결

  • babel.config.jsreact-native-reanimated/plugin을 가장 아래에 지정하지 않아서 발생하는 문제
module.exports = {
presets: [
... // don't add it here :)
],
plugins: [
...
'react-native-reanimated/plugin',
],
};
주의

react-native-reanimated/plugin has to be listed last.

참고문서