const { ENV } = require('./env') let BASEURL switch (ENV) { case 'production': BASEURL = '' break case 'test': // BASEURL = 'https://irrigate.dayuyanjiuyuan.top/' // BASEURL = 'https://d4x9787456.vicp.fun/' // BASEURL = 'http://127.0.0.1:8087/' // BASEURL = 'http://192.168.40.166:8087/' BASEURL = 'http://192.168.10.52:8087/' break default: BASEURL = '' break } module.exports = { BASEURL,// 项目接口地址,支持多域名 }