UNPKG

@neosjs/create-app

Version:

帮助开发者快速创建Vue3应用并自动配置项目

22 lines (20 loc) 629 B
import autoprefixer from 'autoprefixer' import px2rem from 'postcss-pxtorem' export default { plugins: [ px2rem({ // 基准值(根元素fontSize): 1rem = 37.5px // rootValue({ file }) { // return file.includes('vant') ? 37.5 : 75 // 此处是以375为基准进行计算 1rem相当于37.5px // }, rootValue: 16, // 1rem = 16px unitPrecision: 5, // 保留小数点的精度 minPixelValue: 2, // 最小的转换数值 exclude: /node_modules/i, propList: ['*'] }), autoprefixer({ overrideBrowserslist: ['iOS >= 12', 'Android >= 4.1'] }) ] }