12345678910111213141516171819 |
- module.exports = {
- // 请求域名 格式: https://您的域名
- // #ifdef MP
- HTTP_REQUEST_URL:'https://api.lipinwawa.com',
- // #endif
-
-
- // #ifdef H5
- HTTP_REQUEST_URL: 'https://api.lipinwawa.com',
- // #endif
- HEADER:{
- 'content-type': 'application/json',
- 'secret-key': 'b1bd7a4b8da3e47ce58e73b9e5f656c4'
- },
- // 回话密钥名称 请勿修改此配置
- TOKENNAME: 'token',
- // 缓存时间 0 永久
- EXPIRE:0,
- };
|