chore: 添加模块显示配置文件

This commit is contained in:
2024-08-28 13:01:50 +08:00
parent d451b29b7f
commit 8b63bb71cc
2 changed files with 23 additions and 4 deletions

10
src/config/modules.js Normal file
View File

@@ -0,0 +1,10 @@
import { IS_DEV } from './env';
/** 启用“导航”模块 */
export const ENABLE_NAV_MODULE = IS_DEV;
/** 启用“搜索”模块 */
export const ENABLE_SEARCH_MODULE = IS_DEV;
/** 启用“工具箱”模块 */
export const ENABLE_TOOLBOX_MODULE = IS_DEV;