index.ts 424 B

12345678910
  1. const config = {
  2. terminal: 1, //终端
  3. title: '后台管理系统', //网站默认标题
  4. version: '1.4.0', //版本号
  5. baseUrl: `${import.meta.env.VITE_APP_BASE_URL || 'https://gatewaytest1.elab-plus.com'}/`, //请求接口域名 http://192.168.50.19:5555/elab-marketing-file
  6. urlPrefix: 'elab-marketing-file/api', //请求默认前缀
  7. timeout: 10 * 1000 //请求超时时长
  8. }
  9. export default config