edX Hackathon 4/13/2017 Project: Insights Courses Page in Server-side Rendered React

postcss.config.js 194B

1234567
  1. module.exports = {
  2. plugins: [
  3. require('postcss-easy-import')({prefix: '_'}), // keep this first
  4. require('autoprefixer')({ /* ...options */ }) // so imports are auto-prefixed too
  5. ]
  6. }