themes-wordpress/seedlet/postcss.config.js
Jeff Ong f55efa498b
Seedlet: CSS Variables fallback support for IE11 (#2177)
* Try single stylesheet with fallbacks.

* Load IE styles conditionally

* Do not preserve variables for IE11

* Remove unneeded comments.

* Remove stray comment.

* Reduce calc references whenever possible.
2020-06-30 10:17:55 -04:00

10 lines
194 B
JavaScript
Executable file

module.exports = {
plugins: [
require( 'postcss-nested' ),
require( 'postcss-css-variables' )({
"preserve": false,
"preserveAtRulesOrder": true
}),
require( 'postcss-calc' )
]
}