mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
13 lines
235 B
JavaScript
13 lines
235 B
JavaScript
export default (api) => {
|
|
api.describe({
|
|
key: 'publicPath',
|
|
config: {
|
|
default: '/',
|
|
schema(joi) {
|
|
return joi
|
|
.string();
|
|
}
|
|
}
|
|
});
|
|
};
|