mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-11-30 03:07:36 +08:00
21 lines
378 B
JavaScript
21 lines
378 B
JavaScript
|
module.exports = {
|
||
|
plugins: {
|
||
|
'postcss-salad': {
|
||
|
browsers: ['ie > 8', 'last 2 versions'],
|
||
|
features: {
|
||
|
bem: {
|
||
|
shortcuts: {
|
||
|
component: 'b',
|
||
|
modifier: 'm',
|
||
|
descendent: 'e'
|
||
|
},
|
||
|
separators: {
|
||
|
descendent: '__',
|
||
|
modifier: '--'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|