콘솔을 분리합니다.랩과 npm을 사용하여 React Native 애플리케이션의 출시(생산)를 기록하여 성능을 향상시킵니다.
695 단어 reactnativejavascript
yarn add babel-plugin-transform-remove-console --dev
또는npm i babel-plugin-transform-remove-console --save-dev
2) 편집자 바벨.배치하다.jsmodule.exports = {
presets: ['module:metro-react-native-babel-preset'],
env: {
production: {
plugins: ["transform-remove-console"], //removing consoles.log from app during release (production) versions
},
},
};
아니면바베타{
"env": {
"production": {
"plugins": ["transform-remove-console"]
}
}
}
Reference
이 문제에 관하여(콘솔을 분리합니다.랩과 npm을 사용하여 React Native 애플리케이션의 출시(생산)를 기록하여 성능을 향상시킵니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/ajmal_hasan/removing-console-log-from-react-native-app-in-release-production-using-yarn-and-npm-31pg텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)