NitWikit/docusaurus.config.js

160 lines
4.1 KiB
JavaScript
Raw Normal View History

2024-03-23 13:25:49 +08:00
// @ts-check
2024-04-04 10:58:19 +08:00
// `@type` JSDoc annotations allow editor autocompletion and type checking
// (when paired with `@ts-check`).
// There are various equivalent ways to declare your Docusaurus config.
// See: https://docusaurus.io/docs/api/docusaurus-config
2024-03-23 13:25:49 +08:00
2024-04-04 10:58:19 +08:00
import { themes as prismThemes } from "prism-react-renderer";
2024-03-23 13:25:49 +08:00
/** @type {import('@docusaurus/types').Config} */
const config = {
2024-04-04 10:58:19 +08:00
customFields: {
// 标题前缀
titlePrefix: "主页",
// 开始按钮文字
start: "快速开始 🥵",
},
2024-03-30 07:34:53 +08:00
title: '笨蛋MC开服教程',
tagline: '一群笨蛋们写的Minecraft开服教程',
2024-03-23 13:25:49 +08:00
favicon: 'img/favicon.ico',
// Set the production url of your site here
url: 'https://postyizhan.github.io',
// Set the /<baseUrl>/ pathname under which your site is served
// For GitHub pages deployment, it is often '/<projectName>/'
2024-04-26 20:26:30 +08:00
baseUrl: '/',
2024-03-23 13:25:49 +08:00
// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
organizationName: 'postyizhan', // Usually your GitHub org/user name.
2024-04-04 10:58:19 +08:00
projectName: '傻瓜指南', // Usually your repo name.
2024-03-23 13:25:49 +08:00
2024-04-04 10:58:19 +08:00
onBrokenLinks: 'warn',
2024-03-23 13:25:49 +08:00
onBrokenMarkdownLinks: 'warn',
// Even if you don't use internalization, you can use this field to set useful
// metadata like html lang. For example, if your site is Chinese, you may want
// to replace "en" with "zh-Hans".
i18n: {
defaultLocale: 'zh-Hans',
locales: ['zh-Hans'],
2024-03-23 13:25:49 +08:00
},
presets: [
[
'classic',
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
sidebarPath: require.resolve('./sidebars.js'),
routeBasePath: '/',
editUrl: 'https://github.com/postyizhan/NitWikit/tree/main'
2024-03-23 13:25:49 +08:00
},
blog: false,
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
}),
],
],
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
// Replace with your project's social card
image: 'img/docusaurus-social-card.jpg',
navbar: {
2024-04-05 10:34:50 +08:00
title: 'NitWikit',
2024-03-23 13:25:49 +08:00
logo: {
alt: 'Logo',
2024-05-11 20:43:30 +08:00
src: 'img/book.png',
2024-03-23 13:25:49 +08:00
},
hideOnScroll: false,
items: [
{
type: 'doc',
docId: 'intro',
position: 'left',
label: '开始',
},
// 搜索框
{
type: 'search',
position: 'right',
},
2024-04-04 10:58:19 +08:00
// Github
2024-03-23 13:25:49 +08:00
{
2024-04-05 10:34:50 +08:00
href: "https://github.com/postyizhan/NitWikit",
2024-04-04 10:58:19 +08:00
className: "header-github-link",
position: "right",
2024-03-23 13:25:49 +08:00
},
{
type: 'localeDropdown',
position: 'right',
},
],
},
// 底部链接
footer: {
style: 'dark',
links: [
{
title: '文档',
items: [
{
label: '开始',
to: '/intro',
},
],
},
{
title: '交流',
items: [
{
label: 'QQ群',
href: 'https://qm.qq.com/q/dENGavSflK',
},
],
},
{
2024-03-24 06:13:12 +08:00
title: '文档仓库',
2024-03-23 13:25:49 +08:00
items: [
{
label: 'GitHub',
2024-04-05 10:34:50 +08:00
href: 'https://github.com/postyizhan/NitWikit',
2024-03-23 13:25:49 +08:00
},
],
},
],
// 底部版权信息
2024-04-04 10:58:19 +08:00
copyright: `Copyright © ${new Date().getFullYear()} <b>postyizhan</b>, All Rights Reserved.`,
2024-03-23 13:25:49 +08:00
},
// 深浅主题
prism: {
2024-04-04 10:58:19 +08:00
theme: prismThemes.github,
darkTheme: prismThemes.dracula,
2024-03-23 13:25:49 +08:00
},
// 颜色随系统切换
colorMode: {
respectPrefersColorScheme: true,
},
}),
2024-04-04 10:58:19 +08:00
themes: [
[
require.resolve("@easyops-cn/docusaurus-search-local"),
{
hashed: true,
language: ["en", "zh"],
highlightSearchTermsOnTargetPage: true,
explicitSearchResultPath: true,
indexBlog: false,
docsRouteBasePath: "/"
},
2024-03-23 13:25:49 +08:00
],
2024-04-04 10:58:19 +08:00
],
2024-03-23 13:25:49 +08:00
};
2024-04-04 10:58:19 +08:00
export default config;