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.
16 lines
311 B
16 lines
311 B
7 months ago
|
"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;
|