5bdc8dd87f
* 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.
17 lines
361 B
JavaScript
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
|
|
},
|
|
},
|
|
},
|
|
}),
|
|
],
|
|
};
|