mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2026-07-07 08:41:06 +08:00
12 lines
226 B
TypeScript
12 lines
226 B
TypeScript
export default (api) => {
|
|
api.describe({
|
|
key: 'publicPath',
|
|
config: {
|
|
default: '/',
|
|
schema(joi) {
|
|
return joi.string().allow('');
|
|
},
|
|
},
|
|
});
|
|
};
|