postcss.config.js 845 B

1234567891011121314151617181920212223242526272829
  1. import autoprefixer from 'autoprefixer'
  2. /* eslint-disable */
  3. // https://github.com/michael-ciniawsky/postcss-load-config
  4. export default {
  5. plugins: [
  6. // https://github.com/postcss/autoprefixer
  7. autoprefixer({
  8. overrideBrowserslist: [
  9. 'last 4 Chrome versions',
  10. 'last 4 Firefox versions',
  11. 'last 4 Edge versions',
  12. 'last 4 Safari versions',
  13. 'last 4 Android versions',
  14. 'last 4 ChromeAndroid versions',
  15. 'last 4 FirefoxAndroid versions',
  16. 'last 4 iOS versions'
  17. ]
  18. })
  19. // https://github.com/elchininet/postcss-rtlcss
  20. // If you want to support RTL css, then
  21. // 1. yarn/npm install postcss-rtlcss
  22. // 2. optionally set quasar.config.js > framework > lang to an RTL language
  23. // 3. uncomment the following line:
  24. // require('postcss-rtlcss')
  25. ]
  26. }