UNPKG

418 BJavaScriptView Raw
1module.exports = {
2 plugins: {
3 "autoprefixer": {
4 "Browserslist": [
5
6 // 全球统计有超过1%的使用率使用
7 '> 1%',
8
9 // 主流浏览器最近2个版本
10 'last 2 versions',
11
12 // 针对浏览器设置
13 'android >= 2.3',
14 'ios >= 8',
15 'not ie <= 8',
16 'Firefox >= 20'
17 ]
18 }
19 }
20 }