2021-01-04 12:31:59 +00:00
|
|
|
const postcssFunctions = require('./src/js/postcss-functions');
|
2021-01-03 23:51:23 +00:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
plugins: [
|
|
|
|
'postcss-import',
|
|
|
|
'postcss-mixins',
|
|
|
|
'postcss-preset-env',
|
|
|
|
'postcss-nesting',
|
|
|
|
'postcss-simple-vars',
|
|
|
|
['postcss-functions',
|
|
|
|
{
|
2021-01-04 12:31:29 +00:00
|
|
|
functions: postcssFunctions,
|
2021-01-03 23:51:23 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
],
|
|
|
|
};
|