| 12345678910111213141516171819202122232425262728 |
- /**
- * 说明:后端接口配置
- */
- export default {
- server: {
- Dev: 'https://xy.wenlvti.net/api',
- Prod: 'https://xy.wenlvti.net/api',
- },
- mainBodyId: 1,
- platformId: 330,
- bugReport: {
- server: 'https://subserver.wenlvti.net/update/bug-submit',
- appId: 1,
- appKey: 'PSzTR2h8c547pNZGERsH3pJRTPhexzc6WSZwdGrQdJFHmXR2',
- },
- /**
- * 不报告错误的 code
- */
- notReportErrorCode: [401],
- /**
- * 不报告错误的 message
- */
- notReportMessages: [
- /请登录/g,
- /认领/g,
- ] as RegExp[],
- }
|