You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
"use strict";
|
|
const envBaseUrl = {}.VITE_APP_BASE_URL || "";
|
|
let baseUrl = `${envBaseUrl}/`;
|
|
baseUrl = baseUrl;
|
|
const config = {
|
|
version: "4.1.0",
|
|
//版本号
|
|
baseUrl,
|
|
//请求接口域名
|
|
urlPrefix: "api",
|
|
//请求默认前缀
|
|
timeout: 30 * 1e3
|
|
//请求超时时长
|
|
};
|
|
exports.config = config;
|
|
|