mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-10-13 18:22:13 +08:00
14 lines
282 B
TypeScript
14 lines
282 B
TypeScript
import type { IPluginAPI } from '@fesjs/shared';
|
|
|
|
export default (api: IPluginAPI) => {
|
|
api.describe({
|
|
key: 'viteVueJsx',
|
|
config: {
|
|
schema(joi: any) {
|
|
return joi.object();
|
|
},
|
|
default: {},
|
|
},
|
|
});
|
|
};
|