ITRadio/client/postcss.config.cjs

21 lines
511 B
JavaScript

module.exports = {
parser: 'postcss',
plugins: {
'postcss-import': {},
'postcss-mixins': {},
'postcss-nested': {},
'postcss-simple-vars': {},
'postcss-hexrgba': {},
'postcss-color-function': {},
'postcss-font-weights': {},
'postcss-inline-svg': {
paths: ['./src']
},
'postcss-math': {
functionName: 'calculate'
},
'postcss-conditionals': {},
'postcss-preset-env': {}
}
}