import { IConfig } from './src/types' const c: IConfig = { // Deployment language - 部署语言 // zh-CN | en language: 'zh-CN', // [Mondatory], Please replace following Github url with your own Github address which you forked in. // [必填], 请填写您的仓库地址 gitRepoUrl: 'https://github.com/xjh22222228/nav', // Deployment branch name // 部署分支 branch: 'main', // Page Loading: loading1 | loading2 | loading3 | random // If you have a good-looking Loading, please contact us! // 页面Loading: loading1 | loading2 | loading3 | random // 如果您有好看的加载Loading请联系我们! loading: 'loading3', // 随机加载 // Whether the route is in Hash mode, if it is deployed on github pages, it must be set to true // 路由是否Hash模式, 如果是部署在github pages 务必设为 true hashMode: true, // Whether to show the Github icon in the upper right corner // 是否显示右上角的 Github 图标 showGithub: false, // Your website address is good for SEO // 您的网站地址,有利于SEO homeUrl: 'https://git.csdn.net', // Site title // 网站标题 title: 'CSDN 开发者工具助手推荐', // Site description // 网站描述 description: 'CSDN 开发者工具助手推荐', // Site keywords // 网站关键字 keywords: '导航,开发者工具,GitHub开源项目推荐', // Default theme: Light | Sim | Side | App | Shortcut // 默认主题: Light | Sim | Side | App | Shortcut theme: 'Sim', // The content at the bottom of the website, copyright information, record number, can be HTML // 网站底部内容, 版权信息、备案号, 可以是 HTML footerContent: `
共收录\${total}个网站
Copyright © 2018-2021 nav3.cn, All Rights Reserved
`, // Alibaba Vector Gallery https://www.iconfont.cn/ // Used in side theme level 1 and level 2 menu icon display // 阿里巴巴矢量图库 https://www.iconfont.cn/ // 用在 Side 主题一级、二级菜单图标展示 iconfontUrl: '//at.alicdn.com/t/font_2522843_wl70o31sy6.js', // Baidu Statistics Address // 百度统计地址 // https://tongji.baidu.com/web/welcome/login // baiduStatisticsUrl: 'https://hm.baidu.com/hm.js?4582be7af7e7c95ef75351e07c6c32ba', // CNZZ Statistics address // CNZZ 统计地址 // https://www.cnzz.com/o_index.php // cnzzStatisticsUrl: '', // Sim Theme configuration // Sim 主题配置 simThemeConfig: { // Poster illustration - 海报图 posterImageUrls: [ 'https://codechina_dev.gitcode.host/git/assets/img/pattern2.svg' ], description: '这里收录多达 ${total} 个优质网站, 助您工作、学习和生活' } } export default c