three_base/postcss.config.js
2022-03-15 11:50:37 +08:00

16 lines
417 B
JavaScript

module.exports = {
"plugins": {
// 兼容浏览器,添加前缀
'autoprefixer': {
overrideBrowserslist: [
"Android 4.1",
"iOS 7.1",
"Chrome > 31",
"ff > 31",
"ie >= 8",
"last 10 versions", // 所有主流浏览器最近10版本用
],
grid: true,
}
}
}