module.exports = { /** * @type {string} * @description Web page title */ title: 'ChargEco CSMS', version: 'v2.2.3', /** * @type {string} * @description project name */ projectName: 'ChargEco', company: 'Strides YTL Pte. Ltd.', defaultCountry: 'SG', defaultCalling: '65', dashboardVersion: 2, enableWebPos: true, enableTopup: false, enableEVCPID: true, enableOCPIToken: false, //是否显示完整的OCPI Token(仅ChargEco为false) enablePassword12: true, //是否启用高复杂度密码安全策略(仅ChargEco为true) enableSessionAuth: true, //是否启用Session管理登录而不是localStorage /** * @type {string} * @description API url base service */ baseUrl: '/steve', /** * @type {boolean} true | false * @description Whether show the settings right-panel */ showSettings: false, /** * @type {boolean} true | false * @description Whether need tagsView */ tagsView: false, /** * @type {boolean} true | false * @description Whether fix the header */ fixedHeader: true, /** * @type {boolean} true | false * @description Whether show the logo in sidebar */ sidebarLogo: true, /** * 是否启用在线校验路由 * - true 每次刷新都将获取最新的路由权限 * - false 每次刷新获取本地缓存的路由权限 */ enableOnlineAuth: 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' }