pyt
2025-04-24 e4685842877923e0cb8f2539b009ae5910dc47d8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const apiConfig = {
    // 开发环境
    development: {
        baseURL: "",
        imgUrl: "",
    },
    // 生产环境
    production: {
        baseURL: "",
        imgUrl: "",
    },
};
 
export default apiConfig[process.env.VUE_APP_ENV];