mirror of https://github.com/lidarr/Lidarr
24 lines
529 B
JavaScript
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;
|
|
};
|