12345678910111213141516171819202122232425262728293031323334353637383940 |
- // 应用全局配置
- module.exports = {
- // baseUrl: 'https://vue.ruoyi.vip/prod-api',
- baseUrl: 'https://erp-server.huaxiazhizao.com',
- devServer: {
- disableHostCheck: true,
- // historyApiFallback: true,
- // allowedHosts: "all",
- },
- // 单点登录
- VITE_SSO_LOGIN:true,
- // baseUrl: 'http://localhost:8080',
- // baseUrl: 'http://erp-test.huabaosmart.com:8082',
- // if (window.location.host.indexOf('localhost') > -1) {
- // baseUrl: 'http://localhost:8083',
- // }else {
- // baseUrl: 'https://tools-server.huaxiazhizao.com',
- // }
- // 应用信息
- appInfo: {
- // 应用名称
- name: 'ruoyi-app',
- // 应用版本
- version: '1.1.0',
- // 应用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'
- }
- ]
- }
- }
|