You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

postcss.config.js 306B

1234567891011121314151617
  1. 'use strict'
  2. module.exports = {
  3. map: {
  4. inline: false,
  5. annotation: true,
  6. sourcesContent: true
  7. },
  8. plugins: [
  9. require('postcss-scrollbar')({
  10. edgeAutohide: true
  11. }),
  12. require('autoprefixer')({
  13. cascade: false
  14. })
  15. ]
  16. }