-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostcss.config.js
More file actions
25 lines (25 loc) · 685 Bytes
/
postcss.config.js
File metadata and controls
25 lines (25 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
module.exports = {
plugins: {
autoprefixer: {
flexbox: 'no-2009'
},
cssnano: {
preset: ['default', {
discardComments: {
removeAll: true
},
normalizeWhitespace: true,
colormin: true,
minifyFontValues: true,
minifySelectors: true,
mergeLonghand: true,
mergeRules: true,
reduceIdents: false,
reduceInitial: true,
reduceTransforms: true,
uniqueSelectors: true,
zindex: false
}]
}
}
};