125 lines
3.4 KiB
TypeScript
125 lines
3.4 KiB
TypeScript
import {themes as prismThemes} from 'prism-react-renderer';
|
||
import type {Config} from '@docusaurus/types';
|
||
import type * as Preset from '@docusaurus/preset-classic';
|
||
|
||
// This runs in Node.js - Don't use client-side code here (browser APIs, JSX...)
|
||
|
||
const config: Config = {
|
||
title: 'django-vue3-admin',
|
||
tagline: 'Django5 + Vue3 企业级中后台管理系统,支持多端多角色权限、自动化代码生成、Docker一键部署',
|
||
favicon: 'img/favicon.ico',
|
||
|
||
// Future flags, see https://docusaurus.io/docs/api/docusaurus-config#future
|
||
future: {
|
||
v4: true, // Improve compatibility with the upcoming Docusaurus v4
|
||
},
|
||
|
||
// Set the production url of your site here
|
||
url: 'https://xie7654.github.io',
|
||
// 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: 'XIE7654', // GitHub 用户名
|
||
projectName: 'django-vue3-admin', // 仓库名
|
||
|
||
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: 'en',
|
||
locales: ['en'],
|
||
},
|
||
|
||
presets: [
|
||
[
|
||
'classic',
|
||
{
|
||
docs: {
|
||
sidebarPath: './sidebars.ts',
|
||
routeBasePath: '/',
|
||
editUrl: 'https://github.com/XIE7654/django-vue3-admin.git',
|
||
},
|
||
blog: {
|
||
showReadingTime: true,
|
||
feedOptions: {
|
||
type: ['rss', 'atom'],
|
||
xslt: true,
|
||
},
|
||
editUrl: 'https://github.com/XIE7654/django-vue3-admin.git',
|
||
onInlineTags: 'warn',
|
||
onInlineAuthors: 'warn',
|
||
onUntruncatedBlogPosts: 'warn',
|
||
},
|
||
theme: {
|
||
customCss: './src/css/custom.css',
|
||
},
|
||
} satisfies Preset.Options,
|
||
],
|
||
],
|
||
|
||
themeConfig: {
|
||
image: 'img/docusaurus-social-card.jpg',
|
||
navbar: {
|
||
title: 'django-vue3-admin',
|
||
logo: {
|
||
alt: 'django-vue3-admin Logo',
|
||
src: 'img/logo.svg',
|
||
},
|
||
items: [
|
||
{
|
||
type: 'docSidebar',
|
||
sidebarId: 'tutorialSidebar',
|
||
position: 'left',
|
||
label: 'Tutorial',
|
||
},
|
||
{to: '/blog', label: 'Blog', position: 'left'},
|
||
{
|
||
href: 'https://github.com/XIE7654/django-vue3-admin.git',
|
||
label: 'GitHub',
|
||
position: 'right',
|
||
},
|
||
],
|
||
},
|
||
footer: {
|
||
style: 'dark',
|
||
links: [
|
||
{
|
||
title: 'Docs',
|
||
items: [
|
||
{
|
||
label: 'Tutorial',
|
||
to: 'essential/introduction',
|
||
},
|
||
],
|
||
},
|
||
{
|
||
title: 'More',
|
||
items: [
|
||
{
|
||
label: 'Blog',
|
||
to: '/blog',
|
||
},
|
||
{
|
||
label: 'GitHub',
|
||
href: 'https://github.com/XIE7654/django-vue3-admin.git',
|
||
},
|
||
],
|
||
},
|
||
],
|
||
copyright: `Copyright © ${new Date().getFullYear()} django-vue3-admin. Built with Docusaurus.`,
|
||
},
|
||
prism: {
|
||
theme: prismThemes.github,
|
||
darkTheme: prismThemes.dracula,
|
||
},
|
||
} satisfies Preset.ThemeConfig,
|
||
};
|
||
|
||
export default config;
|