index.js: Cannot find module 'react-native-reanimated/plugin'

Viewed 22

> index.js: Cannot find module 'react-native-reanimated/plugin'

I fix this issue with comment plugins: ['react-native-reanimated/plugin'] module.exports = function(api) {

return {
presets: ['babel-preset-expo'],
// plugins: ['react-native-reanimated/plugin'],
};
};
1 Answers

plugins: ['react-native-reanimated/plugin'], only required for reanimated v2 and above if you're using v1 then no need to use it and removing it will fix your problem. You can check the documentation for more details from here.

Related