config.js 538 B

1234567891011121314151617181920
  1. /*
  2. * @Author: 廖明明
  3. * @Date: 2022-03-31 15:12:00
  4. * @LastEditors: 廖明明
  5. * @LastEditTime: 2022-04-02 14:29:15
  6. * @Description: 后端服务配置文件
  7. */
  8. //配置项
  9. const config = {
  10. baseUrl: "", // 后端服务地址
  11. };
  12. // 后端服务地址
  13. const baseUrls = {
  14. // development: "http://192.168.3.108/service", //开发环境
  15. development: "http://192.168.3.69/service", //开发环境
  16. production: "http://192.168.3.108/service", //生产环境
  17. };
  18. config.baseUrl = baseUrls[process.env.NODE_ENV];
  19. export default config;