mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-06-04 21:02:35 +08:00
Co-authored-by: Subin <[email protected]> Co-authored-by: Manoj <[email protected]> Co-authored-by: Nithin <[email protected]>
13 lines
224 B
JavaScript
13 lines
224 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
require('postcss-import'),
|
|
require('postcss-flexbugs-fixes'),
|
|
require('postcss-preset-env')({
|
|
autoprefixer: {
|
|
flexbox: 'no-2009'
|
|
},
|
|
stage: 3
|
|
})
|
|
]
|
|
}
|