postcss.config.cjs 817 B

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