vue中postcss.config.js配置文件

对CSS进行转换适配插件的配置文件

常用的插件有

1. autoprefixer 浏览器前缀转换

2. postcss-pxtorem 移动端px转换rem适配单位

例:

module.exports = {
  plugins: {
    'autoprefixer': {
      browsers: ['Android >= 4.0', 'iOS >= 7']
    },
    'postcss-pxtorem': {
      rootValue: 16,//结果为:设计稿元素尺寸/16,比如元素宽320px,最终页面会换算成 20rem
      propList: ['*']
    }
  }
}

 

posted @ 2021-07-08 17:40  不少  阅读(3756)  评论(0编辑  收藏  举报