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

26 lines
269 B
JavaScript

/**
* @file app 的全局配置
* @author Zhang Peng
*/
module.exports = {
/**
* 打印日志开关
*/
log: true,
http: {
/**
* 请求超时时间
*/
timeout: 5000,
/**
* 服务器的host
*/
baseURL: '/api'
}
}