138 lines
3.9 KiB
TypeScript
138 lines
3.9 KiB
TypeScript
import {themes as prismThemes} from 'prism-react-renderer';
|
||
import type {Config} from '@docusaurus/types';
|
||
import type * as Preset from '@docusaurus/preset-classic';
|
||
|
||
const config: Config = {
|
||
title: '工诚云网知识在线',
|
||
tagline: '一款简单易用,使用Markdown维护文档超酷知识站',
|
||
favicon: 'img/favicon.ico',
|
||
|
||
// Set the production url of your site here
|
||
url: 'https://knowledge.gzgcyw.com',
|
||
// Set the /<baseUrl>/ pathname under which your site is served
|
||
// For GitHub pages deployment, it is often '/<projectName>/'
|
||
baseUrl: '/',
|
||
|
||
// GitHub pages deployment config.
|
||
// If you aren't using GitHub pages, you don't need these.
|
||
organizationName: 'facebook', // Usually your GitHub org/user name.
|
||
projectName: 'docusaurus', // Usually your repo name.
|
||
|
||
onBrokenLinks: 'throw',
|
||
onBrokenMarkdownLinks: 'warn',
|
||
|
||
// Even if you don't use internationalization, 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','en'],
|
||
},
|
||
|
||
presets: [
|
||
[
|
||
'classic',
|
||
{
|
||
docs: {
|
||
sidebarPath: './sidebars.ts',
|
||
// Please change this to your repo.
|
||
// Remove this to remove the "edit this page" links.
|
||
editUrl:
|
||
'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
|
||
},
|
||
blog: {
|
||
showReadingTime: true,
|
||
// Please change this to your repo.
|
||
// Remove this to remove the "edit this page" links.
|
||
editUrl:
|
||
'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
|
||
},
|
||
theme: {
|
||
customCss: './src/css/custom.css',
|
||
},
|
||
} satisfies Preset.Options,
|
||
],
|
||
],
|
||
|
||
themeConfig: {
|
||
// Replace with your project's social card
|
||
image: 'img/docusaurus-social-card.jpg',
|
||
navbar: {
|
||
title: '工诚云网知识在线',
|
||
logo: {
|
||
alt: '工诚云网知识在线',
|
||
src: 'img/logo.svg',
|
||
},
|
||
items: [
|
||
{
|
||
type: 'docSidebar',
|
||
sidebarId: 'tutorialSidebar',
|
||
position: 'left',
|
||
label: 'Tutorial',
|
||
},
|
||
{to: '/blog', label: 'Blog', position: 'left'},
|
||
{
|
||
href: 'https://github.guizhoujc.com/15308555518/docusaurus',
|
||
label: 'GitHub',
|
||
position: 'right',
|
||
},
|
||
],
|
||
},
|
||
footer: {
|
||
style: 'dark',
|
||
links: [
|
||
{
|
||
title: 'Docs',
|
||
items: [
|
||
{
|
||
label: 'Tutorial',
|
||
to: '/docs/intro',
|
||
},
|
||
],
|
||
},
|
||
{
|
||
title: 'Community',
|
||
items: [
|
||
{
|
||
label: 'Stack Overflow',
|
||
href: 'https://stackoverflow.com/questions/tagged/docusaurus',
|
||
},
|
||
{
|
||
label: 'Discord',
|
||
href: 'https://discordapp.com/invite/docusaurus',
|
||
},
|
||
{
|
||
label: 'Twitter',
|
||
href: 'https://twitter.com/docusaurus',
|
||
},
|
||
],
|
||
},
|
||
{
|
||
title: 'More',
|
||
items: [
|
||
{
|
||
label: '云盘',
|
||
href: 'https://pan.gzgcyw.com',
|
||
},
|
||
{
|
||
label: '开源镜像站',
|
||
href: 'https://mirrors.gzgcyw.com',
|
||
},
|
||
{
|
||
label: 'GitHub',
|
||
href: 'https://github.guizhoujc.com/15308555518/docusaurus',
|
||
},
|
||
],
|
||
},
|
||
],
|
||
copyright: `Copyright © ${new Date().getFullYear()} 贵州工诚云网数智产业发展有限责任公司 Built with Docusaurus.`,
|
||
},
|
||
prism: {
|
||
theme: prismThemes.github,
|
||
darkTheme: prismThemes.dracula,
|
||
},
|
||
} satisfies Preset.ThemeConfig,
|
||
};
|
||
|
||
export default config;
|