salix-front/postcss.config.js

29 lines
905 B
JavaScript
Raw Normal View History

2022-12-20 11:00:36 +00:00
/* eslint-disable */
// https://github.com/michael-ciniawsky/postcss-load-config
2025-01-22 09:57:59 +00:00
import autoprefixer from 'autoprefixer';
// Uncomment the following line if you want to support RTL CSS
// import rtlcss from 'postcss-rtlcss';
export default {
2022-12-20 11:00:36 +00:00
plugins: [
// https://github.com/postcss/autoprefixer
2025-01-22 09:57:59 +00:00
autoprefixer({
2022-12-20 11:00:36 +00:00
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
2025-01-22 09:57:59 +00:00
// If you want to support RTL CSS, uncomment the following line:
// rtlcss(),
2022-12-20 11:00:36 +00:00
],
};