/** @type {import('postcss-load-config').Config} */ const config = { plugins: { tailwindcss: {}, 'postcss-pxtorem': { rootValue: 14.4, // 默认的根元素字体大小 unitPrecision: 5, // 单位转换后保留的精度 propList: ['*'], // 转换哪些属性,'*' 表示全部 selectorBlackList: [/^body$/, /^html$/], minPixelValue: 0, // 小于或等于`1px`的不转换为`rem` mediaQuery: false, // 允许在媒体查询中转换`px` } }, }; export default config;