lx-admin-frontend/src/settings.ts

56 lines
965 B
TypeScript
Raw Normal View History

2023-04-02 01:01:56 +08:00
const setting: DefaultSettings = {
2023-04-03 00:05:09 +08:00
/**
*
*/
title: import.meta.env.VITE_APP_TITLE,
theme: '#409EFF',
/**
* theme-darktheme-light
*/
sideTheme: 'theme-dark',
/**
*
*/
showSettings: false,
/**
*
*/
topNav: false,
/**
* tagsView
*/
tagsView: true,
/**
*
*/
fixedHeader: false,
/**
* logo
*/
sidebarLogo: true,
/**
*
*/
dynamicTitle: false,
/**
* @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',
animationEnable: false,
dark: false
2023-04-02 01:01:56 +08:00
};
export default setting;