[Solved] Ant design page reloading css rendering delay

Actually, based on And Design Doc about getting a start, You could use babel plugin for automatic loading used components like below, it is a recommended way: // .babelrc or babel-loader option { “plugins”: [ [“import”, { “libraryName”: “antd”, “libraryDirectory”: “es”, “style”: “css” }] // `style: true` for less ] } By using this way … Read more