2021-01-05 11:45:02 +00:00
|
|
|
const postcssFunctions = require('./postcss/functions');
|
|
|
|
const postcssMixins = require('./postcss/mixins');
|
2021-01-03 23:51:23 +00:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
plugins: [
|
|
|
|
'postcss-import',
|
2021-01-05 11:45:02 +00:00
|
|
|
['postcss-mixins', { mixins: postcssMixins }],
|
2021-01-03 23:51:23 +00:00
|
|
|
'postcss-preset-env',
|
|
|
|
'postcss-nesting',
|
|
|
|
'postcss-simple-vars',
|
2021-01-05 11:45:02 +00:00
|
|
|
['postcss-functions', { functions: postcssFunctions }],
|
2021-01-03 23:51:23 +00:00
|
|
|
],
|
|
|
|
};
|