form-cheatsheet/postcss.json

14 lines
279 B
JSON
Raw Permalink Normal View History

2016-10-10 12:02:31 -04:00
{
"use": ["autoprefixer", "postcss-css-variables", "cssnano"],
"input": "css/src/style.css",
"output": "css/style.min.css",
"autoprefixer": {
"browsers": "> 1%"
},
"cssnano": {
"autoprefixer": false
},
"postcss-css-variables": {
"preserve": true
}
}