I used my react TypeScript project for ant-design, I have some issue when I reload the page, css loading delay, any reason for this?
css loading delay
I imported my
Replace
@import './../node_modules/antd/dist/antd.css';
with
@import '~antd/dist/antd.css';
This is given in the documentation you linked.