Files
wangxiaowei 899112ccdb 完善功能
2026-03-21 18:09:20 +08:00

14 lines
476 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

const config = {
terminal: 1, //终端
title: '后台管理系统', //网站默认标题
version: '1.9.4', //版本号
// 开发环境使用相对路径通过代理生产环境使用完整URL
baseUrl: import.meta.env.DEV
? '/'
: `${import.meta.env.VITE_APP_BASE_URL || 'https://76458.com'}/`, //请求接口域名
urlPrefix: 'adminapi', //请求默认前缀
timeout: 10 * 1000 //请求超时时长
}
export default config