When I try make import like this in ant design with react
import {UserOutlined, LockOutlined} from '@ant-design/icons'
I get next warning
"You are using a whole package of antd, please use
https://www.npmjs.com/package/babel-plugin-import
to reduce app bundle size warning or what wrong with my babelrc?"
I try to fix it with bubble-import-plugin but it dont work
Maybe I use it wrong way?
*in client folder I have react app and in package.json - babel blugin for import and also babelrc config with next settings
{
"plugins": [
["import", {"libraryName": "antd"}]
]
}