website-config.ts 981 B

1234567891011121314151617181920212223242526272829303132333435
  1. /**
  2. * 官网配置文件
  3. * 请根据实际情况修改以下配置
  4. */
  5. export const websiteConfig = {
  6. // GitHub 仓库地址
  7. github: {
  8. repo: "https://github.com/2930134478/AI-CS",
  9. releases: "https://github.com/2930134478/AI-CS/releases",
  10. issues: "https://github.com/2930134478/AI-CS/issues",
  11. readme: "https://github.com/2930134478/AI-CS/blob/master/README.md",
  12. },
  13. // 联系方式
  14. contact: {
  15. email: "contact@example.com", // 可选:邮箱地址
  16. wechat: "", // 可选:微信号或微信群链接
  17. },
  18. // 友情链接(用于互相引流)
  19. // 格式:{ name: "链接名称", url: "链接地址" }
  20. friendLinks: [
  21. // 示例:添加您的友情链接
  22. // { name: "合作伙伴1", url: "https://example.com" },
  23. // { name: "合作伙伴2", url: "https://example2.com" },
  24. ],
  25. // 其他配置
  26. copyright: {
  27. company: "AI-CS 智能客服系统", // 公司/产品名称
  28. year: new Date().getFullYear(),
  29. },
  30. };