18 lines
555 B
JavaScript
18 lines
555 B
JavaScript
const postcssNormalize = require('postcss-normalize');
|
|
|
|
module.exports = {
|
|
plugins: () => [
|
|
require('postcss-flexbugs-fixes'),
|
|
require('postcss-preset-env')({
|
|
autoprefixer: {
|
|
flexbox: 'no-2009',
|
|
},
|
|
stage: 3,
|
|
}),
|
|
// Adds PostCSS Normalize as the reset css with default options,
|
|
// so that it honors browserslist config in package.json
|
|
// which in turn let's users customize the target behavior as per their needs.
|
|
postcssNormalize(),
|
|
],
|
|
};
|