poster-design/postcss.config.js
ShawnPhang c25bd8b3b0 init
2023-07-18 15:03:15 +08:00

26 lines
590 B
JavaScript

/*
* @Author: ShawnPhang
* @Date: 2022-10-11 14:00:18
* @Description:
* @LastEditors: ShawnPhang <site: book.palxp.com>
* @LastEditTime: 2023-06-26 20:48:18
*/
module.exports = {
plugins: {
// "postcss-import": {},
// "postcss-url": {},
// to edit target browsers: use "browserslist" field in package.json
autoprefixer: {
overrideBrowserslist: [
'Android 4.1',
'iOS 7.1',
'Chrome > 31',
'ff > 31',
'ie >= 8',
'last 10 versions', // 所有主流浏览器最近10版本用
],
grid: true,
},
},
}