Cannot read property 'makeMutable' of undefined
문제상황
- Cannot read property 'makeMutable' of undefined 에러가 발생
해결
babel.config.js
의react-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.