-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
postcss.config.js
47 lines (46 loc) · 1.59 KB
/
postcss.config.js
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
"use strict";
module.exports = {
plugins: [
require('cssnano')({
preset: [
'advanced', {
discardComments: {
removeAll: true
},
autoprefixer: false,
calc: false,
cssDeclarationSorter: true,
colormin: true,
convertValues: true,
discardDuplicates: true,
discardOverridden: true,
discardUnused: true,
discardEmpty: true,
mergeIdents: true,
mergeLonghand: true,
mergeRules: true,
minifyFontValues: true,
minifyGradients: true,
minifyParams: true,
minifySelectors: true,
normalizeCharset: true,
normalizeDisplayValues: true,
normalizePositions: true,
normalizeRepeatStyle: true,
normalizeString: true,
normalizeTimingFunctions: true,
normalizeUnicode: true,
normalizeUrl: true,
normalizeWhitespace: true,
orderedValues: true,
reduceIdents: true,
reduceInitial: true,
reduceTransforms: true,
svgo: true,
uniqueSelectors: true,
zindex: false
}
]
}),
]
};