Files
alab-amis-fix-exam/postcss.config.js

18 lines
555 B
JavaScript
Raw Permalink Normal View History

2024-11-13 09:05:45 +08:00
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(),
],
};