mirror of
https://github.com/palxiao/poster-design
synced 2024-11-21 23:30:11 +00:00
26 lines
590 B
JavaScript
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,
|
|
},
|
|
},
|
|
}
|