12345678910111213 |
- module.exports = {
- plugins: {
- 'postcss-px-to-viewport': {
- viewportWidth: 1920, // 设计稿宽度
- viewportHeight: 1080, // 设计稿高度
- unitPrecision: 5, // 转换后的精度
- viewportUnit: 'vw', // 转换单位
- selectorBlackList: [], // 忽略的选择器
- minPixelValue: 1, // 最小转换值
- mediaQuery: false, // 设置为 false 不转换媒体查询中的 px
- },
- },
- };
|