mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
16 lines
356 B
JavaScript
16 lines
356 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
require('postcss-import')({
|
|
// Wepacker isn't passing the configured path to Postcss, so we specify the base path here
|
|
path: process.cwd()
|
|
}),
|
|
require('postcss-flexbugs-fixes'),
|
|
require('postcss-preset-env')({
|
|
autoprefixer: {
|
|
flexbox: 'no-2009'
|
|
},
|
|
stage: 3
|
|
})
|
|
]
|
|
}
|