'webpack://antd/./components/config-provider/style/index.less' URL is not supported

 

去年的问题今年还没解决,版本升级问题

 

 react+antd  引入import 'antd/dist/antd.css';  // or 'antd/dist/antd.less'

报错: 

Failed to parse source map: 'webpack://antd/./components/time-picker/style/index.less' URL is not supported

 

原因分析:

出现这个问题是因为 react-script 升级到5.0.0.
通过npx create-react-app 创建的项目,
引入antd.css 之后会看到这个警告。

 

 

傻瓜式解决方案:

解决方法就是
import "antd/dist/antd.css"
替换为
import "antd/dist/antd.min.css"

 

posted @ 2022-06-14 18:10  大熊丨rapper  阅读(798)  评论(0编辑  收藏  举报