123456789101112131415161718192021222324252627282930 |
- // 应用全局配置
- module.exports = {
- baseUrl: process.env.NODE_ENV=='production'?'https://api.mxrvending.com:9050':'https://ai.tanbin.vip',
- // baseUrl: 'https://api.mxrvending.com:9050',
- //mock数据
- // baseUrl: 'http://119.96.213.127:9010/mock',
- // 应用信息
- appInfo: {
- // 应用名称
- name: "MXR-app",
- // 应用版本
- version: "1.0.0",
- // 应用logo
- logo: "/static/logo.png",
- // 官方网站
- site_url: "http://www.xyvending.com/",
- // 政策协议
- agreements: [
- {
- title: "隐私政策",
- url: "https://ruoyi.vip/protocol.html"
- },
-
- {
- title: "用户服务协议",
- url: "https://ruoyi.vip/protocol.html"
- }
- ]
- }
- }
|