hexo-theme-amane/include/schema/common/providers.json

26 lines
929 B
JSON
Raw Normal View History

2019-12-25 01:24:34 +00:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "/common/providers.json",
"description": "CDN provider settings\nhttps://ppoffice.github.io/hexo-theme-icarus/Configuration/Theme/speed-up-your-site-with-custom-cdn/",
"type": "object",
"properties": {
"cdn": {
"type": "string",
"description": "Name or URL template of the JavaScript and/or stylesheet CDN provider",
"default": "jsdelivr",
"nullable": true
2019-12-25 01:24:34 +00:00
},
"fontcdn": {
"type": "string",
"description": "Name or URL template of the webfont CDN provider",
"default": "google",
"nullable": true
2019-12-25 01:24:34 +00:00
},
"iconcdn": {
"type": "string",
"description": "Name or URL of the fontawesome icon font CDN provider",
"default": "fontawesome",
"nullable": true
}
2019-12-25 01:24:34 +00:00
}
}