File size: 345 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 |
module.exports = () => ( {
plugins: {
'postcss-custom-properties': {
importFrom: [ require.resolve( '@automattic/calypso-color-schemes/js' ) ],
// @TODO: Drop `preserve: false` workaround if possible
// See https://github.com/Automattic/jetpack/pull/13854#issuecomment-550898168
preserve: false,
},
autoprefixer: {},
},
} );
|