Files
frost-navigation/src/config/modules.js

11 lines
264 B
JavaScript
Raw Normal View History

2024-08-28 13:01:50 +08:00
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;