1
pyt
2025-07-01 28e931a12ef4f8ec2bbb40f0516485136b589dac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
const apiConfig = {
    // 开发环境
    development: {
        baseURL: "http://221.182.45.100:8081",
        imgUrl: "http://192.168.110.64:8081/open/file/upload",
        showImgUrl:'http://221.182.45.100:9998/'
    },
    // 生产环境
    production: {
        baseURL: "",
        imgUrl: "",
    },
};
 
export default apiConfig[process.env.VUE_APP_ENV];