app.js 424 B

12345678910111213141516171819
  1. module.exports = {
  2. // 请求域名 格式: https://您的域名
  3. // #ifdef MP
  4. HTTP_REQUEST_URL:'https://api.lipinwawa.com',
  5. // #endif
  6. // #ifdef H5
  7. HTTP_REQUEST_URL: 'https://api.lipinwawa.com',
  8. // #endif
  9. HEADER:{
  10. 'content-type': 'application/json',
  11. 'secret-key': 'b1bd7a4b8da3e47ce58e73b9e5f656c4'
  12. },
  13. // 回话密钥名称 请勿修改此配置
  14. TOKENNAME: 'token',
  15. // 缓存时间 0 永久
  16. EXPIRE:0,
  17. };