yarn add -D babel-plugin-transform-remove-console
또는
npm i babel-plugin-transform-remove-console --save-dev
babel-plugin-transform-remove-console 을 설치해준다.
그리고 babel.config.js 에 있는 env.production 에
module.exports = function () {
return {
// ... other project config such as presets and plugins
env: {
production: {
plugins: ['transform-remove-console']
}
}
};
};
이렇게 추가해준다.
그럼 배포시 console은 삭제된다.
잘못된정보가 있으면 언제든 댓글 남겨주세요 태클은 언제나 환영입니다 :)
'React-Native' 카테고리의 다른 글
[ReactNative] TextInput 에 onPress 이벤트 설정하는 방법 (0) | 2023.02.27 |
---|---|
react-native-image-crop-picker, ImagePicker 안드로이드(android)에서 Cannot find image data 해결하는법 (2) | 2023.02.25 |
[ReactNative] crypto-js를 이용한 AES ECB 모드 암호화 및 복호화 하기 (0) | 2022.12.11 |
command phasescriptexecution failed with a nonzero exit code (0) | 2022.12.04 |
[React Native] no bundle url present (0) | 2022.11.25 |