nginx-tutorial/demos/reactapp/config/app.config.js

26 lines
271 B
JavaScript
Raw Normal View History

2018-07-11 16:07:16 +08:00
/**
* @file app 的全局配置
* @author Zhang Peng
*/
module.exports = {
/**
* 打印日志开关
*/
log: true,
http: {
/**
* 请求超时时间
*/
timeout: 5000,
/**
* 服务器的host
*/
2018-07-11 19:45:17 +08:00
baseURL: '/api',
2018-07-11 16:07:16 +08:00
}
};