21 lines
453 B
JavaScript
21 lines
453 B
JavaScript
module.exports = {
|
|
presets: ['module:metro-react-native-babel-preset'],
|
|
plugins: [
|
|
[
|
|
'module:react-native-dotenv',
|
|
{
|
|
moduleName: '@env',
|
|
path: '.env',
|
|
safe: true,
|
|
allowUndefined: true,
|
|
},
|
|
],
|
|
'react-native-reanimated/plugin',
|
|
],
|
|
env: {
|
|
production: {
|
|
plugins: ['transform-remove-console'], //removing consoles.log from app during release (production) versions
|
|
},
|
|
},
|
|
};
|