董国庆
2025-05-23 4d4e8cd36377fa24cdda7a560dfc42fd2c9334b4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const apiConfig = {
    // 开发环境
    development: {
        baseURL: "http://192.168.110.34:8081",
        imgUrl: "",
    },
    // 生产环境
    production: {
        baseURL: "",
        imgUrl: "",
    },
};
 
export default apiConfig[process.env.VUE_APP_ENV];