19 lines
513 B
JavaScript
19 lines
513 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
require('postcss-pxtorem')({
|
|
rootValue:({ file }) => {
|
|
if (
|
|
file.includes('userRanking') ||
|
|
file.includes('dietaryNutritionTips') ||
|
|
file.includes('restaurantAndCafeteriaCombined')
|
|
) {
|
|
return 108;
|
|
} else {
|
|
return 192;
|
|
}
|
|
},
|
|
propList: ['*'],
|
|
})
|
|
]
|
|
}
|