ApiCofig.ts 353 B

12345678910111213141516171819
  1. /**
  2. * 说明:后端接口配置
  3. */
  4. export default {
  5. serverDev: 'https://mnwh.wenlvti.net/api',
  6. serverProd: 'https://mnwh.wenlvti.net/api',
  7. mainBodyId: 1,
  8. /**
  9. * 不报告错误的 code
  10. */
  11. notReportErrorCode: [401],
  12. /**
  13. * 不报告错误的 message
  14. */
  15. notReportMessages: [
  16. /请授权绑定手机号/g,
  17. ] as RegExp[],
  18. }