728x90
반응형

 

  • yarn add -D babel-plugin-transform-remove-console
    Task actions
    • Convert to task
    • Delete
  • babel.config.js 에서 아래와 같이 변경

 

module.exports = {
//  ...
  env: {
     // ...
    production: {
      //...
      plugins: ['babel-plugin-transform-remove-console'],
    },
  },
};

 

 

728x90
반응형

+ Recent posts