mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-09-05 14:59:51 +08:00
13 lines
313 B
JavaScript
13 lines
313 B
JavaScript
|
|
export default (api) => {
|
|
api.describe({
|
|
key: 'externals',
|
|
config: {
|
|
schema(joi) {
|
|
// https://webpack.js.org/configuration/externals/#externals
|
|
return joi.alternatives(joi.object(), joi.string(), joi.function());
|
|
}
|
|
}
|
|
});
|
|
};
|