detection-business/config.js

29 lines
667 B
JavaScript
Raw Normal View History

2024-09-11 15:55:28 +08:00
// 应用全局配置
module.exports = {
2024-11-09 17:56:06 +08:00
// baseUrl: 'https://www.nuoyunr.com/admin-api',
2024-11-11 09:32:28 +08:00
baseUrl: 'http://127.0.0.1:48080/admin-api',
2024-09-18 19:09:42 +08:00
imagesUrl: 'http://www.nuoyunr.com/lananRsc',
2024-11-09 17:56:06 +08:00
baseImageUrl: 'https://www.nuoyunr.com/minio',
2024-11-11 09:32:28 +08:00
wsUrl: 'ws://127.0.0.1:48080',
2024-09-11 15:55:28 +08:00
// 应用信息
appInfo: {
// 应用名称
name: "lanan-jc",
// 应用版本
2024-09-20 01:40:27 +08:00
version: "2.2",
2024-09-11 15:55:28 +08:00
// 应用logo
logo: "/static/logo.png'",
// 官方网站
site_url: "http://ruoyi.vip",
// 政策协议
agreements: [{
title: "隐私政策",
url: "https://ruoyi.vip/protocol.html"
},
{
title: "用户服务协议",
url: "https://ruoyi.vip/protocol.html"
}
]
}
}