关于react.js:Removing-propTypes-in-production-build

Removing propTypes in production build? #209
1.装置

npm install --save-dev babel-plugin-transform-react-remove-prop-types

2.配置应用
在.babelrc文件中:

"env": { 
    "production": { 
        "plugins": [ 
            ["transform-react-remove-prop-types", 
              {"mode":"remove",
              "removeImport": true,
              "ignoreFilenames":["node_modules"]} 
            ] 
         ] 
     } 
}
  • mode: 革除prop-types生成的代码
  • removeImport: 革除import引入的代码
  • ignoreFilenames: 疏忽node_modules中的代码

评论

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

这个站点使用 Akismet 来减少垃圾评论。了解你的评论数据如何被处理