// https://github.com/michael-ciniawsky/postcss-load-config const path = require('path'); module.exports = { "plugins": { "postcss-write-svg": { utf8: false }, "postcss-px-to-viewport": { viewportWidth: 375, // (Number) The width of the viewport. viewportHeight: 595, // (Number) The height of the viewport. unitPrecision: 3, // (Number) The decimal numbers to allow the REM units to grow to. viewportUnit: 'vw', // (String) Expected units. selectorBlackList: ['.ignore', '.hairlines', /^\.weui/, /^\.vux/], // (Array) The selectors to ignore and leave as px. minPixelValue: 1, // (Number) Set the minimum pixel value to replace. mediaQuery: false // (Boolean) Allow px to be converted in media queries. }, }, "exclude": [ path.resolve(__dirname, "node_modules/vux") ], }