refactor: frontend 重命名为 backend-adminend,新增 shccd159/shjjy153 配置
- frontend 目录迁移至 backend-adminend(管理后台前端) - 新增 application-shccd159.yml、application-shjjy153.yml - 更新 deploy.conf、DEPLOY.md、application.yml Made-with: Cursor
This commit is contained in:
44
backend-adminend/src/settings.js
Normal file
44
backend-adminend/src/settings.js
Normal file
@@ -0,0 +1,44 @@
|
||||
// +----------------------------------------------------------------------
|
||||
// |
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
// 请求接口地址 如果没有配置自动获取当前网址路径(Node 环境如 Jest 下无 location)
|
||||
const VUE_APP_API_URL = process.env.VUE_APP_BASE_API || (typeof location !== 'undefined' ? `${location.origin}/api/` : 'http://localhost/api/');
|
||||
module.exports = {
|
||||
// 接口请求地址
|
||||
apiBaseURL: VUE_APP_API_URL,
|
||||
|
||||
title: '加载中...',
|
||||
|
||||
/**
|
||||
* @type {boolean} true | false
|
||||
* @description Whether show the settings right-panel
|
||||
*/
|
||||
showSettings: true,
|
||||
|
||||
/**
|
||||
* @type {boolean} true | false
|
||||
* @description Whether need tagsView
|
||||
*/
|
||||
tagsView: true,
|
||||
|
||||
/**
|
||||
* @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 {string | array} 'production' | ['production', 'development']
|
||||
* @description Need show err logs component.
|
||||
* The default is only used in the production env
|
||||
* If you want to also use it in dev, you can pass ['production', 'development']
|
||||
*/
|
||||
errorLog: 'production',
|
||||
};
|
||||
Reference in New Issue
Block a user