公告板
版本库
活动
搜索
登录
H5
/
leshan-laboratory
乐山实验室h5
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
项目课题方案接口文件
董国庆
2025-05-08
fdf083258ffc85080a43fccea3205e22d5e71088
[H5/leshan-laboratory.git]
/
laboratory
/
src
/
utils
/
baseurl.js
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];