32 lines
882 B
JavaScript
32 lines
882 B
JavaScript
// postcss.config.js
|
|
|
|
import autoprefixer from 'autoprefixer';
|
|
|
|
export default {
|
|
plugins: [
|
|
// https://github.com/postcss/autoprefixer
|
|
autoprefixer({
|
|
overrideBrowserslist: [
|
|
"last 100 Chrome versions",
|
|
"last 40 Firefox versions",
|
|
"last 20 Edge versions",
|
|
"last 55 Safari versions",
|
|
"last 90 Android versions",
|
|
"last 250 ChromeAndroid versions",
|
|
"last 60 FirefoxAndroid versions",
|
|
"last 35 iOS versions",
|
|
"last 10 Opera versions",
|
|
"> 0.03%",
|
|
"not dead"
|
|
]
|
|
}),
|
|
|
|
// https://github.com/elchininet/postcss-rtlcss
|
|
// If you want to support RTL css, then
|
|
// 1. yarn/pnpm/bun/npm install postcss-rtlcss
|
|
// 2. optionally set quasar.config.js > framework > lang to an RTL language
|
|
// 3. uncomment the following line:
|
|
// require('postcss-rtlcss')()
|
|
]
|
|
};
|