UNPKG
@wibetter/akfun
Version:
latest (3.2.21)
3.2.21
前端脚手架:支持Vue技术栈和react技术栈
@wibetter/akfun
/
src
/
config
/
postcss.config.js
19 lines
(17 loc)
•
344 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// https://www.npmjs.com/package/autoprefixer module.exports = { postcssOptions: { plugins: [
require
(
'autoprefixer'
)({ overrideBrowserslist: [
'> 1%'
,
'last 2 versions'
,
'not ie <= 8'
,
'iOS >= 8'
,
'Firefox >= 20'
,
'Android > 4.4'
] }) ] } };