-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpostcss.config.js
31 lines (31 loc) · 1.36 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
module.exports = {
plugins: {
// 'autoprefixer': require('autoprefixer')(),
autoprefixer: {
overrideBrowserslist: [
"Android 4.1",
"iOS 7.1",
"Chrome > 31",
"ff > 31",
"ie >= 8"
// 'last 10 versions', // 所有主流浏览器最近10版本用
],
grid: true
},
"postcss-px-to-viewport": {
unitToConvert: "px", // 要转化的单位
viewportWidth: 2560, // UI设计稿的宽度
viewportHeight: 1660, // UI设计稿的高度,随便写一个
unitPrecision: 3, // 转换后的精度,即小数点位数
propList: ["*", "!letter-spacing"], // 指定转换的css属性的单位,*代表全部css属性的单位都进行转换,除了letter-spacing的
viewportUnit: "vw", // 指定需要转换成的视窗单位,默认vw
fontViewportUnit: "vw", // 指定字体需要转换成的视窗单位,默认vw
selectorBlackList: ["ignore"], // 指定不转换为视窗单位的类名,
minPixelValue: 1, // 默认值1,小于或等于1px则不进行转换
mediaQuery: true, // 是否在媒体查询的css代码中也进行转换,默认false
// replace: true, // 是否转换后直接更换属性值
exclude: [/node_modules/], // 设置忽略文件,用正则做目录名匹配
landscape: false // 是否处理横屏情况
}
}
}