-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpostcss.config.js
61 lines (61 loc) · 2.48 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import postcsspxtoviewport8plugin from 'postcss-px-to-viewport-8-plugin';
export default {
plugins: [
// 处理属性转vw的情况
postcsspxtoviewport8plugin({
unitToConvert: 'px', // 要转化的单位
viewportWidth: 1920, // UI设计稿的宽度
unitPrecision: 5, // 转换后的精度,即小数点位数
propList: [
'width',
'left',
'right',
'font-size',
'margin-left',
'margin-right',
'text-indent',
'padding-left',
'padding-right',
'padding',
], // 指定转换的css属性的单位,*代表全部css属性的单位都进行转换
viewportUnit: 'vw', // 指定需要转换成的视窗单位,默认vw
fontViewportUnit: 'vw', // 指定字体需要转换成的视窗单位,默认vw
selectorBlackList: ['ignore-'], // 指定不转换为视窗单位的类名
minPixelValue: 1, // 默认值1,小于或等于1px则不进行转换
mediaQuery: true, // 是否在媒体查询的css代码中也进行转换,默认false
replace: true, // 是否转换后直接更换属性值
exclude: [/node_modules/], // 设置忽略文件,用正则做目录名匹配
include: [
/\/src\/pages\/amap/,
],
landscape: false, // 是否处理横屏情况
}),
// 处理属性转vh的情况
postcsspxtoviewport8plugin({
unitToConvert: 'px', // 要转化的单位
viewportWidth: 1080, // UI设计稿的宽度
unitPrecision: 5, // 转换后的精度,即小数点位数
propList: [
'height',
'top',
'bottom',
'margin-top',
'margin-bottom',
'padding-top',
'padding-bottom',
'line-height',
], // 指定转换的css属性的单位,*代表全部css属性的单位都进行转换
viewportUnit: 'vh', // 指定需要转换成的视窗单位,默认vw
fontViewportUnit: 'vh', // 指定字体需要转换成的视窗单位,默认vw
selectorBlackList: ['ignore-'], // 指定不转换为视窗单位的类名
minPixelValue: 1, // 默认值1,小于或等于1px则不进行转换
mediaQuery: true, // 是否在媒体查询的css代码中也进行转换,默认false
replace: true, // 是否转换后直接更换属性值
exclude: [/node_modules/], // 设置忽略文件,用正则做目录名匹配
include: [
/\/src\/pages\/amap/,
],
landscape: false, // 是否处理横屏情况
})
]
}