加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
settings.js 1.16 KB
一键复制 编辑 原始数据 按行查看 历史
falost 提交于 2021-12-17 22:40 . doc: 更新 readme 文件
/*
* @Descripttion: 项目配置文件
* @version: 1.0.0
* @Author: falost
* @Date: 2020-12-27 20:53:06
* @LastEditors: falost
* @LastEditTime: 2021-05-07 23:00:27
*/
const DEV = process.env.NODE_ENV === 'development'
// ERP 主系统接口地址
const DEV_URL = 'http://127.0.0.1:7001'
const PRO_URL = ''
const STATIC_DEV = ''
const STATIC_PRO = ''
module.exports = {
title: '头像边框' + (DEV ? '(内测版)' : ''),
subTitle: '',
/* 接口请求地址 */
URL: DEV ? DEV_URL : PRO_URL,
STATIC: DEV ? STATIC_DEV : STATIC_PRO,
baseURL: process.env.VUE_APP_BASE_API,
NODE_ENV: 'pro',
DEV,
themeColor: '#50616d', // 主题颜色
/**
* @type {boolean} true | false
* @description Whether fix the header
*/
fixedHeader: true,
/**
* @type {boolean} true | false
* @description Whether show the logo in sidebar
*/
sidebarLogo: true,
/**
* @type {boolean} true | false
* @description Whether show the Tags View
*/
needTagsView: true,
/**
* @type {Array}
* @description 模块展示排列顺序
*/
modelSort: [],
clientId: '',
clientSecret: '',
/**
* 字体图标库链接
*/
fontLibrary: ''
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化