数据报表
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
1.2 KiB

3 years ago
  1. module.exports = {
  2. "plugins": {
  3. "postcss-import": {},
  4. "postcss-url": {},
  5. "postcss-aspect-ratio-mini": {},
  6. "postcss-write-svg": {
  7. utf8: false
  8. },
  9. "postcss-cssnext": {},
  10. "postcss-px-to-viewport": {
  11. viewportWidth: 750, // 视窗的宽度,对应的是我们设计稿的宽度,移动端一般是750,如果是pc端那就是类似1920这样的尺寸
  12. viewportHeight: 1344, // 视窗的高度,移动端一般指定1334,也可以不配置
  13. unitPrecision: 3, // 指定`px`转换为视窗单位值的小数位数(很多时候无法整除)
  14. viewportUnit: 'vw', // 指定需要转换成的视窗单位,建议使用vw
  15. selectorBlackList: ['.ignore', '.hairlines'], // 指定不转换为视窗单位的类,可以自定义,可以无限添加,建议定义一至两个通用的类名
  16. minPixelValue: 1, // 小于或等于`1px`不转换为视窗单位,你也可以设置为你想要的值
  17. mediaQuery: false // 允许在媒体查询中转换`px`
  18. },
  19. "postcss-viewport-units":{},
  20. "cssnano": {
  21. preset: "default", // 设置成default将不会启用autoprefixer
  22. "postcss-zindex": false
  23. }
  24. }
  25. }