website-config.ts 1.1 KB

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