We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 188d231 commit f23085cCopy full SHA for f23085c
packages/main/config/postcss.components/postcss.config.js
@@ -4,14 +4,15 @@ const postcssCSStoESM = require('../../lib/postcss-css-to-esm/index.js');
4
const cssnano = require('cssnano');
5
6
module.exports = {
7
- plugins: [
8
- postcssNesting(),
9
- postcssAddFallback({importFrom: "./dist/css/themes/sap_fiori_3/parameters-bundle.css"}),
+ plugins: [
+ postcssNesting(),
+ postcssAddFallback({importFrom: "./dist/css/themes/sap_fiori_3/parameters-bundle.css"}),
10
cssnano({preset: [
11
'default', {
12
mergeLonghand: false, // https://github.com/cssnano/cssnano/issues/675
13
+ mergeRules: false, // https://github.com/cssnano/cssnano/issues/730
14
},
15
]}, ),
- postcssCSStoESM(),
16
- ]
+ postcssCSStoESM(),
17
+ ]
18
};
0 commit comments