21 lines
598 B
JavaScript
21 lines
598 B
JavaScript
![]() |
const { doc, type, defaultValue } = require('../common/utils').descriptors;
|
||
|
|
||
|
module.exports = {
|
||
|
[type]: 'object',
|
||
|
[doc]: 'CDN provider settings',
|
||
|
cdn: {
|
||
|
[type]: 'string',
|
||
|
[doc]: 'Name or URL of the JavaScript and/or stylesheet CDN provider',
|
||
|
[defaultValue]: 'cdnjs'
|
||
|
},
|
||
|
fontcdn: {
|
||
|
[type]: 'string',
|
||
|
[doc]: 'Name or URL of the webfont CDN provider',
|
||
|
[defaultValue]: 'google'
|
||
|
},
|
||
|
iconcdn: {
|
||
|
[type]: 'string',
|
||
|
[doc]: 'Name or URL of the webfont Icon CDN provider',
|
||
|
[defaultValue]: 'fontawesome'
|
||
|
}
|
||
|
};
|