static-cms/postcss.config.js
Caleb 5bdc8dd87f Upgrade PostCSS build deps (#681)
* Move supported browser list to package.json.

That way all build tools can use it.

* Specify supported browsers explicitly.

This is necessary for the latest version of browserslist/autoprefixer.

This also drops IE 10 support, as it was accidental anyway.

* Upgrade PostCSS build deps.
2017-10-13 16:47:50 -06:00

17 lines
361 B
JavaScript

const webpack = require('webpack');
module.exports = {
plugins: [
require('postcss-import')({ addDependencyTo: webpack }),
require('postcss-cssnext')({
features: {
customProperties: {
variables: {
"preferred-font": 'inherit', // Override react-toolbox font setting
},
},
},
}),
],
};