postcss.config.js 224 B

12345678910111213
  1. const options = {
  2. plugins: {
  3. 'postcss-import': {},
  4. 'postcss-cssnext': {},
  5. 'css-mqpacker': {}
  6. }
  7. };
  8. if (process.env.NODE_ENV === 'development') {
  9. options.map = { inline: true };
  10. }
  11. module.exports = options;