postcss.config.js 889 B

1234567891011121314151617181920212223242526272829
  1. // https://github.com/michael-ciniawsky/postcss-load-config
  2. import autoprefixer from 'autoprefixer'
  3. // import rtlcss from 'postcss-rtlcss'
  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/pnpm/bun/npm install postcss-rtlcss
  22. // 2. optionally set quasar.config.js > framework > lang to an RTL language
  23. // 3. uncomment the following line (and its import statement above):
  24. // rtlcss()
  25. ]
  26. }