config.js 375 字节
Newer Older
landylee007's avatar
landylee007 已提交
1 2 3 4 5 6 7 8 9 10 11 12
export default function docConfig(location, word) {
  const prefix = 'https://docs.koderover.com/zadig';
  let docUrl = {
    个人中心: {
      KubeConfig: prefix + '/faq/product-usage/#kubectl-工具查询-安装方式',
      APIToken: prefix + '/api/usage/#api-调用方式'
    },
  };
  if (location !== '' && word !== '') {
    return docUrl[location][word];
  }
}