mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2026-09-04 15:04:26 +08:00
17 lines
378 B
TypeScript
17 lines
378 B
TypeScript
import type { IPluginAPI } from '@fesjs/shared';
|
|
|
|
export default (api: IPluginAPI) => {
|
|
api.describe({
|
|
key: 'extraCSS',
|
|
config: {
|
|
schema(joi) {
|
|
return joi.object({
|
|
plugin: joi.object(),
|
|
loader: joi.object(),
|
|
});
|
|
},
|
|
default: {},
|
|
},
|
|
});
|
|
};
|