@142vip/vitepress
Version:
基于vitepress框架搭建静态站点的常用工具包,提供ElementPlus相关组件和主题
11 lines (10 loc) • 446 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.getStarHistorySvgUrl = getStarHistorySvgUrl;
var _openSource = require("../constants/openSource");
function getStarHistorySvgUrl(repoNames, isDark) {
const repos = repoNames?.length ? repoNames : [..._openSource.VIP_STAR_HISTORY_DEFAULT_REPOS];
return `https://api.star-history.com/svg?repos=${repos.join(",")}&type=Date${isDark ? "&theme=dark" : ""}`;
}