Ant design page reloading css rendering delay

前端 未结 2 2037
深忆病人
深忆病人 2020-12-20 11:08

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?

I imported my

2条回答
  •  梦毁少年i
    2020-12-20 11:25

    Replace

    @import './../node_modules/antd/dist/antd.css';
    

    with

    @import '~antd/dist/antd.css';
    

    This is given in the documentation you linked.

提交回复
热议问题