mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2026-07-07 08:41:06 +08:00
14 lines
328 B
TypeScript
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');
|
|
},
|
|
},
|
|
});
|
|
};
|