mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2026-07-03 22:48:16 +08:00
14 lines
285 B
TypeScript
14 lines
285 B
TypeScript
import type { IPluginAPI } from '@fesjs/shared';
|
|
|
|
export default (api: IPluginAPI) => {
|
|
api.describe({
|
|
key: 'viteVuePlugin',
|
|
config: {
|
|
schema(joi: any) {
|
|
return joi.object();
|
|
},
|
|
default: {},
|
|
},
|
|
});
|
|
};
|