mergeLonghand removes CSS in [email protected].
Input:
.b {
border-top-color: rgba(85, 85, 85, 0.95);
border-bottom: none;
}
Output:
.b {
border-bottom: none;
}
@hudochenkov Do you have any workaround? Did you downgrade meanwhile?
@vseguin I disabled this rule:
require('cssnano')({
preset: [
'default',
{
mergeLonghand: false,
},
],
}),
/cc @andyjansson
@hudochenkov worked for me, thank you so much!
Looking into this.
Fixed in [email protected]
Thank you for a quick fix!
Most helpful comment
@vseguin I disabled this rule: