19 lines
253 B
JavaScript
19 lines
253 B
JavaScript
|
module.exports = {
|
||
|
plugins: [
|
||
|
"postcss-import",
|
||
|
"postcss-mixins",
|
||
|
"postcss-preset-env",
|
||
|
"postcss-nesting",
|
||
|
"postcss-simple-vars",
|
||
|
["postcss-functions",
|
||
|
{
|
||
|
functions: { half },
|
||
|
}
|
||
|
],
|
||
|
],
|
||
|
};
|
||
|
|
||
|
function half(val) {
|
||
|
return val / 2;
|
||
|
}
|