/** * Created by JianJia.Zhou on 2022/3/18. */ const IS_DEV = process.env.NODE_ENV === 'development' const URL = 'https://zhangsiye.9026.com' // const URL = 'https://t3.9026.com' module.exports = { // 版本 VERSION: '0.0.1', // API 接口URL BASE_URL: IS_DEV ? 'https://zhangsiye.9026.com/api' : URL + '/api', // API 接口URL IMAGE_URL: IS_DEV ? 'http://www.zsy.me/static/image' : URL + '/static/image' }