我有以下配置,我有一个EventInfoCard。当它处于预加载状态时,它会呈现一个从父级继承大量CSS的不同组件。我正在使用postcss-cssnext
变量,这个组合函数似乎与css-loader
没有很好的匹配。
EventInfoCard.css
@import '../constants.css';
.root {
}
.thumbnail {
display: block;
width: 100%;
height: 0px;
padding-bottom: 56%;
position: relative;
overflow: hidden;
border-radius: var(--xxxs)px;
}
.notification {
border-radius: var(--xxxs)px;
font-size: 12px;
display: inline-block;
height: var(--s)px;
padding: 0 var(--xxs)px;
line-height: var(--s)px;
text-transform: uppercase;
font-weight: var(--weight-medium);
margin-right: var(--xxs)px;
}
.description {
letter-spacing: -0.1px;
margin-top: 7px;
}
EventInfoCardPreloading.css
@import '../constants.css';
.root {
background: blue;
}
.thumbnail {
composes: thumbnail from './InfoCard.css';
background-color: var(--tones-lightest);
}
.description {
composes: description from './InfoCard.css';
}
虽然现在它似乎引入了EventInfoCard CSS而没有转换变量,最终导致这个无效的CSS,如下所示。那么我做错了什么?我认为compes只会获取类名而不会引入文件。
postcss config:
const path = require('path')
module.exports = {
plugins: {
'postcss-partial-import': {},
'postcss-mixins': {
mixinsDir: path.join(__dirname, 'statics', 'mycujoo-theme', 'mixins')
},
'postcss-nested': {},
'postcss-cssnext': {
browsers: ['last 2 versions', '> 5%'],
}
}
}
webpack loader config:
test: /\.css$/,
use: extractCSS.extract({
fallback: 'style-loader',
use: [
{ loader: 'css-loader', options: { modules: true, localIdentName: '[name]__[local]___[hash:base64:5]' } },
{ loader: 'postcss-loader' }
]
}),
答案 0 :(得分:0)
由于您的配置是CSS Modules
和postcss-loader
,因此它还应声明importLoaders
选项以生成postcss-loader
and css-loader
with CSS modules enabled work together。
test: /\.css$/,
use: extractCSS.extract({
fallback: 'style-loader',
use: [
{ loader: 'css-loader', options: { modules: true, importLoaders: 1, localIdentName: '[name]__[local]___[hash:base64:5]' } },
{ loader: 'postcss-loader' }
]
}),