19 lines
360 B
JavaScript
19 lines
360 B
JavaScript
import postcssPxtorem from 'postcss-pxtorem';
|
|
|
|
/** @type {import('postcss-load-config').Config} */
|
|
const config = {
|
|
plugins: {
|
|
tailwindcss: {},
|
|
'postcss-pxtorem': {
|
|
rootValue: 20,
|
|
unitPrecision: 5,
|
|
propList: ['*'],
|
|
selectorBlackList: [],
|
|
minPixelValue: 0,
|
|
mediaQuery: false,
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|