You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import autoprefixer from 'autoprefixer'
|
|
|
|
|
|
|
|
/* eslint-disable */
|
|
|
|
// https://github.com/michael-ciniawsky/postcss-load-config
|
|
|
|
|
|
|
|
export default {
|
|
|
|
plugins: [
|
|
|
|
// https://github.com/postcss/autoprefixer
|
|
|
|
autoprefixer({
|
|
|
|
overrideBrowserslist: [
|
|
|
|
'last 4 Chrome versions',
|
|
|
|
'last 4 Firefox versions',
|
|
|
|
'last 4 Edge versions',
|
|
|
|
'last 4 Safari versions',
|
|
|
|
'last 4 Android versions',
|
|
|
|
'last 4 ChromeAndroid versions',
|
|
|
|
'last 4 FirefoxAndroid versions',
|
|
|
|
'last 4 iOS versions'
|
|
|
|
]
|
|
|
|
})
|
|
|
|
|
|
|
|
// https://github.com/elchininet/postcss-rtlcss
|
|
|
|
// If you want to support RTL css, then
|
|
|
|
// 1. yarn/npm install postcss-rtlcss
|
|
|
|
// 2. optionally set quasar.config.js > framework > lang to an RTL language
|
|
|
|
// 3. uncomment the following line:
|
|
|
|
// require('postcss-rtlcss')
|
|
|
|
]
|
|
|
|
}
|