addseed-web/postcss.config.mjs

17 lines
523 B
JavaScript
Raw Permalink Normal View History

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