ant-design / ant-design-icons

⭐ Ant Design SVG Icons
https://ant.design/components/icon/
MIT License
961 stars 582 forks source link

import from @ant-design/icons super slow #308

Open mitsol opened 4 years ago

mitsol commented 4 years ago

I'm using meteor@1.10.2 with antd@4.3.0.

Any import of an Icon makes the app super slow on initial load (only initial site load).

E.g. using

import { LaptopOutlined, NotificationOutlined, UserOutlined } from '@ant-design/icons';

increases triggered site-reload to 10 seconds, while removing this line, site reload takes < 1 second.

dimadev01 commented 3 years ago

Same here

mitsol commented 3 years ago

try the following: instead of using the named import

import { LaptopOutlined, NotificationOutlined, UserOutlined } from '@ant-design/icons';

use the default import for each icon:

import LaptopOutlined from '@ant-design/icons/LaptopOutlined';
import NotificationOutlined from '@ant-design/icons/NotificationOutlined';
import UserOutlined from '@ant-design/icons/UserOutlined';

this prevents from importing all icons.

dimadev01 commented 3 years ago

try the following: instead of using the named import

import { LaptopOutlined, NotificationOutlined, UserOutlined } from '@ant-design/icons';

use the default import for each icon:

import LaptopOutlined from '@ant-design/icons/LaptopOutlined';
import NotificationOutlined from '@ant-design/icons/NotificationOutlined';
import UserOutlined from '@ant-design/icons/UserOutlined';

this prevents from importing all icons.

Thank you very much, I missed tho think about that! Thanks!