Skip to content

Instantly share code, notes, and snippets.

@Shaxadhere
Created January 18, 2023 14:30
Show Gist options
  • Save Shaxadhere/356266d598bd84ded13d7c57cd996a0d to your computer and use it in GitHub Desktop.
Save Shaxadhere/356266d598bd84ded13d7c57cd996a0d to your computer and use it in GitHub Desktop.
remove console logs on production in react
module.exports = api => {
const babelEnv = api.env();
const plugins = [];
if (babelEnv !== 'development') {
plugins.push('transform-remove-console');
}
return {
presets: ['module:metro-react-native-babel-preset'],
plugins,
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment