1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-26 12:42:31 +01:00
Sonarr/frontend/postcss.config.js
2019-07-26 18:13:47 -07:00

24 lines
529 B
JavaScript

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));
}, {})
},
'postcss-color-function': {},
'postcss-nested': {}
}
};
return config;
};