https://www.cnblogs.com/sunhang32/p/12157990.html
https://www.jianshu.com/p/bcd887d31046
今天在项目中用antd的时候发现antd样式无效,经过检查发现是因为我项目中用到了css modules。如果项目中只是引入antd.css,那么根据官网步骤配置webpack是不会有问题的。但是如果项目中同时引入css modules和按需引入antd,那么就会导致antd样式无效。
1.首先我项目中的配置是这样的
/*
webpack.config.js中的配置
**/
module: { // 这里配置Babel
rules: [
{
test: /(\.jsx|\.js)$/,
use: {
loader: "babel-loader"
},
exclude: /node_modules/
},
{ // 这里配置这两个工具
test: /\.css$/,
exclude: /node_modules/,
use: [
{
loader: "style-loader"
}, {
loader: "css-loader",
options: {
modules: true, // 指定启用css modules
importLoaders: 1,
localIdentName: '[name]__[local]--[hash:base64:5]'
}
}
]
}
]
}
/*
.babelrc中的配置
**/
{
"presets": ["react", "env", "stage-0"],
"env": {
"development": {
"plugins": [["react-transform", {
"transforms": [{
"transform": "react-transform-hmr",
"imports": ["react"],
"locals": ["module"]
}]
}]]
}
}
}
2.根据antd design 官网按需引入antd
- 首先安装babel-plugin-import
npm install babel-plugin-import --save-dev
yarn add babel-plugin-import
- babel-loader的query/options字段加入
"plugins": [
["import", {
"libraryName": "antd",
"libraryDirectory": "es",
"style": "css" // style: true 会加载 less 文件
}]
]
- .babelrc中plugins字段这样配置
{
"presets": ["react", "env", "stage-0"],
"env": {
"development": {
"plugins": [["react-transform", {
"transforms": [{
"transform": "react-transform-hmr",
"imports": ["react"],
"locals": ["module"]
}]
}]]
}
},
"plugins": [
["import",{
"libraryName": "antd",
"libraryDirectory": "es",
"style": "css"}] // antd按需加载
]
}
3.但是这样配置还是和antd的不一样,需要添加如下配置
//antd样式处理
{
test:/\.css$/,
exclude:/src/,
use:[
{
loader: "style-loader"},
{
loader: "css-loader",
options:{
importLoaders:1
}
}
]
}
- 在webpack.config.js中配置如下
module: { // 这里配置Babel
rules: [
{
test: /(\.jsx|\.js)$/,
use: {
loader: "babel-loader"
},
exclude: /node_modules/
}, { // 这里配置这两个工具
test: /\.css$/,
exclude: /node_modules/,
use: [
{
loader: "style-loader"
}, {
loader: "css-loader",
options: {
modules: true, // 指定启用css modules
importLoaders: 1,
localIdentName: '[name]__[local]--[hash:base64:5]'
}
}
]
}, { // antd样式处理
test:/\.css$/,
exclude:/src/,
use:[
{ loader: "style-loader"},
{
loader: "css-loader",
options:{
importLoaders:1
}
}
]
}
]
}
0人点赞
自树一帜
"小礼物走一走,来简书关注我"
作者:秉持本心
链接:https://www.jianshu.com/p/bcd887d31046
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。