postcss.config.js 828 B

123456789101112131415161718192021222324252627
  1. import autoprefixer from 'autoprefixer'
  2. // import rtlcss from 'postcss-rtlcss'
  3. export default {
  4. plugins: [
  5. // https://github.com/postcss/autoprefixer
  6. 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/pnpm/bun/npm install postcss-rtlcss
  21. // 2. optionally set quasar.config.js > framework > lang to an RTL language
  22. // 3. uncomment the following line (and its import statement above):
  23. // rtlcss()
  24. ]
  25. }