check NODE_ENV

This commit is contained in:
yiminghe 2016-04-30 11:06:55 +08:00
parent 9b4a159d09
commit 08f956eb21

View File

@ -18,9 +18,11 @@ const antd = {
Card, LocaleProvider, Transfer, Cascader,
};
if (typeof console !== 'undefined' && console.warn) {
console.warn(`you are using prebuild antd,
if (process.env.NODE_ENV !== 'production') {
if (typeof console !== 'undefined' && console.warn) {
console.warn(`you are using prebuild antd,
please use https://github.com/ant-design/babel-plugin-antd to reduce app bundle size.`);
}
}
export default antd;