Radarr/frontend/postcss.config.js

24 lines
529 B
JavaScript
Raw Normal View History

2018-11-23 07:04:42 +00:00
const reload = require('require-nocache')(module);
module.exports = (ctx, configPath, options) => {
const config = {
plugins: {
'postcss-mixins': {
mixinsDir: [
'frontend/src/Styles/Mixins'
]
},
'postcss-simple-vars': {
variables: () =>
ctx.options.cssVarsFiles.reduce((acc, vars) => {
return Object.assign(acc, reload(vars));
}, {})
},
2018-11-23 07:05:47 +00:00
'postcss-color-function': {},
2019-07-27 05:33:33 +00:00
'postcss-nested': {}
2018-11-23 07:04:42 +00:00
}
};
return config;
};