postcss.config.cjs 294 B

123456789101112
  1. /*
  2. NOTE: unfortunately can't rename this file to `postcss.cjs` or error is thrown
  3. */
  4. module.exports = {
  5. parser: require('postcss-comment'), // for "//" style comments
  6. plugins: [
  7. require('postcss-advanced-variables'),
  8. require('postcss-nesting'),
  9. require('autoprefixer'),
  10. ],
  11. }