ApiCofig.ts 538 B

12345678910111213141516171819202122232425262728
  1. /**
  2. * 说明:后端接口配置
  3. */
  4. export default {
  5. server: {
  6. Dev: 'https://xy.wenlvti.net/api',
  7. Prod: 'https://xy.wenlvti.net/api',
  8. },
  9. mainBodyId: 1,
  10. platformId: 330,
  11. bugReport: {
  12. server: 'https://subserver.wenlvti.net/update/bug-submit',
  13. appId: 1,
  14. appKey: 'PSzTR2h8c547pNZGERsH3pJRTPhexzc6WSZwdGrQdJFHmXR2',
  15. },
  16. /**
  17. * 不报告错误的 code
  18. */
  19. notReportErrorCode: [401],
  20. /**
  21. * 不报告错误的 message
  22. */
  23. notReportMessages: [
  24. /请登录/g,
  25. /认领/g,
  26. ] as RegExp[],
  27. }