2023-03-15 10:38:43 +08:00
|
|
|
const lightCodeTheme = require('prism-react-renderer/themes/github');
|
|
|
|
const darkCodeTheme = require('prism-react-renderer/themes/dracula');
|
|
|
|
|
|
|
|
/** @type {import('@docusaurus/types').DocusaurusConfig} */
|
|
|
|
module.exports = {
|
2023-03-15 13:56:22 +08:00
|
|
|
title: 'gitlink',
|
|
|
|
tagline: 'gitlink帮助中心',
|
2023-03-15 10:38:43 +08:00
|
|
|
onBrokenLinks: 'throw',
|
|
|
|
onBrokenMarkdownLinks: 'warn',
|
2023-03-15 13:56:22 +08:00
|
|
|
favicon: 'img/icon.ico',
|
2023-03-15 10:38:43 +08:00
|
|
|
url: 'https://luffyzh.github.io',
|
|
|
|
baseUrl: '/',
|
|
|
|
organizationName: 'luffyZh', // Usually your GitHub org/user name.
|
|
|
|
projectName: 'docusaurus-luffyzh-website', // Usually your repo name.
|
|
|
|
themeConfig: {
|
|
|
|
algolia: {
|
2023-03-30 15:33:17 +08:00
|
|
|
apiKey: '0f9f28b9ab9efae89810921a351753b5',
|
|
|
|
indexName: 'github',
|
2023-06-28 10:37:11 +08:00
|
|
|
contextualSearch: true,
|
|
|
|
facetFilters: ['language:zh-CH'],
|
2023-03-15 10:38:43 +08:00
|
|
|
},
|
|
|
|
navbar: {
|
2023-03-15 13:56:22 +08:00
|
|
|
title: '',
|
2023-03-15 10:38:43 +08:00
|
|
|
logo: {
|
2023-03-15 13:56:22 +08:00
|
|
|
alt: 'gitlink',
|
|
|
|
src: 'img/gitlink.png',
|
2023-03-15 10:38:43 +08:00
|
|
|
},
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
docId: 'intro',
|
|
|
|
position: 'left',
|
2023-03-15 13:56:22 +08:00
|
|
|
label: '帮助中心',
|
2023-03-30 15:33:17 +08:00
|
|
|
}
|
2023-03-15 10:38:43 +08:00
|
|
|
],
|
|
|
|
},
|
|
|
|
footer: {
|
|
|
|
style: 'dark',
|
|
|
|
links: [
|
|
|
|
{
|
|
|
|
title: 'Docs',
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
label: '文档',
|
|
|
|
to: '/docs/intro',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Blog',
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
label: '博客',
|
|
|
|
to: '/blog',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: '更多',
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
label: '掘金',
|
|
|
|
href: 'https://juejin.cn/user/96412752681079'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'GitHub',
|
|
|
|
href: 'https://github.com/luffzh/docusaurus-luffyzh-website',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
2023-03-30 15:33:17 +08:00
|
|
|
copyright: `<p>©Copyright 2023 CCF 开源发展委员会</p><p>Powered by Trustie& IntelliDE 京ICP备13000930号</p>`,
|
2023-03-15 10:38:43 +08:00
|
|
|
},
|
|
|
|
prism: {
|
|
|
|
theme: lightCodeTheme,
|
|
|
|
darkTheme: darkCodeTheme,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
presets: [
|
|
|
|
[
|
2023-03-30 15:33:17 +08:00
|
|
|
//此为docusaurus的默认界面风格
|
2023-03-15 10:38:43 +08:00
|
|
|
'@docusaurus/preset-classic',
|
|
|
|
{
|
2023-03-30 15:33:17 +08:00
|
|
|
//此为docs的侧边栏修饰
|
2023-03-15 10:38:43 +08:00
|
|
|
docs: {
|
|
|
|
sidebarPath: require.resolve('./sidebars.js'),
|
2023-03-30 15:33:17 +08:00
|
|
|
//此为网页左下的Edit this page 链接地址
|
|
|
|
editUrl:'https://www.gitlink.org.cn/Gitlink/gitlink_help_center/tree/master/',
|
2023-03-15 10:38:43 +08:00
|
|
|
},
|
2023-03-30 15:33:17 +08:00
|
|
|
//修饰的css文件格式
|
2023-03-15 10:38:43 +08:00
|
|
|
theme: {
|
|
|
|
customCss: require.resolve('./src/css/custom.css'),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
],
|
2023-03-23 11:33:46 +08:00
|
|
|
i18n: {
|
|
|
|
defaultLocale: 'zh-cn',
|
2023-03-30 15:33:17 +08:00
|
|
|
locales: ['zh-cn'],
|
2023-03-23 11:33:46 +08:00
|
|
|
},
|
2023-03-15 10:38:43 +08:00
|
|
|
};
|