mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-16 07:26:47 +00:00
16 lines
413 B
JavaScript
16 lines
413 B
JavaScript
const CONFIG_SIMPLE = {
|
|
|
|
LOGO_IMG: '/Logo.webp',
|
|
TOP_BAR: true, // 显示顶栏
|
|
TOP_BAR_CONTENT: process.env.NEXT_PUBLIC_THEME_SIMPLE_TOP_TIPS || '',
|
|
|
|
AUTHOR_LINK: process.env.NEXT_PUBLIC_AUTHOR_LINK || '#',
|
|
|
|
// 菜单配置
|
|
MENU_CATEGORY: true, // 显示分类
|
|
MENU_TAG: true, // 显示标签
|
|
MENU_ARCHIVE: true, // 显示归档
|
|
MENU_SEARCH: true // 显示搜索
|
|
}
|
|
export default CONFIG_SIMPLE
|