mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-07-18 22:35:58 +08:00
77 lines
2.2 KiB
TypeScript
77 lines
2.2 KiB
TypeScript
/*
|
|
* @Author: yubaolee <yubaolee@163.com> | ahfu~ <954478625@qq.com>
|
|
* @Date: 2025-04-23 20:26:48
|
|
* @LastEditTime: 2025-04-24 01:27:38
|
|
* @Description: 配置
|
|
* Copyright (c) 2025 by yubaolee | ahfu~ , All Rights Reserved.
|
|
*/
|
|
import { defineThemeConfig } from 'vuepress-theme-plume'
|
|
import { navbar } from './navbar'
|
|
import { notes } from './notes'
|
|
|
|
/**
|
|
* @see https://theme-plume.vuejs.press/config/basic/
|
|
*/
|
|
export default defineThemeConfig({
|
|
logo: 'http://img.openauth.net.cn/2025-04-23-21-21-00.png',
|
|
|
|
appearance: true, // 配置 深色模式
|
|
|
|
social: [
|
|
{ icon: 'github', link: 'https://gitee.com/dotnetchina/OpenAuth.Net' },
|
|
],
|
|
// navbarSocialInclude: ['github'], // 允许显示在导航栏的 social 社交链接
|
|
// aside: true, // 页内侧边栏, 默认显示在右侧
|
|
// outline: [2, 3], // 页内大纲, 默认显示 h2, h3
|
|
|
|
/**
|
|
* 文章版权信息
|
|
* @see https://theme-plume.vuejs.press/guide/features/copyright/
|
|
*/
|
|
// copyright: true,
|
|
|
|
// prevPage: true, // 是否启用上一页链接
|
|
// nextPage: true, // 是否启用下一页链接
|
|
// createTime: true, // 是否显示文章创建时间
|
|
|
|
/* 站点页脚 */
|
|
footer: {
|
|
message: 'Copyright © 2025 <a target="_blank" href="http://www.openauth.net.cn">OpenAuth.Net</a>',
|
|
copyright: '',
|
|
},
|
|
|
|
/**
|
|
* @see https://theme-plume.vuejs.press/config/basic/#profile
|
|
*/
|
|
profile: {
|
|
avatar: 'http://img.openauth.net.cn/2025-04-23-21-21-00.png',
|
|
name: 'OpenAuth.Net官方文档',
|
|
description: '最好用的权限工作流框架',
|
|
// circle: true,
|
|
// location: '',
|
|
// organization: '',
|
|
},
|
|
|
|
navbar,
|
|
notes,
|
|
|
|
/**
|
|
* 公告板
|
|
* @see https://theme-plume.vuejs.press/guide/features/bulletin/
|
|
*/
|
|
// bulletin: {
|
|
// layout: 'top-right',
|
|
// contentType: 'markdown',
|
|
// title: '公告板标题',
|
|
// content: '公告板内容',
|
|
// },
|
|
|
|
/* 过渡动画 @see https://theme-plume.vuejs.press/config/basic/#transition */
|
|
// transition: {
|
|
// page: true, // 启用 页面间跳转过渡动画
|
|
// postList: true, // 启用 博客文章列表过渡动画
|
|
// appearance: 'fade', // 启用 深色模式切换过渡动画, 或配置过渡动画类型
|
|
// },
|
|
|
|
})
|