2025-09-05 22:40:22 +08:00

14 lines
328 B
TypeScript

export default (api) => {
api.describe({
key: 'autoprefixer',
config: {
default: {
flexbox: 'no-2009',
},
schema(joi) {
return joi.object().description('postcss autoprefixer, default flexbox: no-2009');
},
},
});
};