mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-05-22 14:39:20 +08:00
12 lines
284 B
JavaScript
12 lines
284 B
JavaScript
export default (api) => {
|
|
api.describe({
|
|
key: 'publicPath',
|
|
config: {
|
|
default: '/',
|
|
schema(joi) {
|
|
return joi.string().regex(/\/$/).error(new Error('config.publicPath must end with /.'));
|
|
},
|
|
},
|
|
});
|
|
};
|