136 lines
3.7 KiB
JavaScript
136 lines
3.7 KiB
JavaScript
// @ts-check
|
|
// Note: type annotations allow type checking and IDEs autocompletion
|
|
|
|
const lightCodeTheme = require('prism-react-renderer/themes/github');
|
|
const darkCodeTheme = require('prism-react-renderer/themes/dracula');
|
|
|
|
/** @type {import('@docusaurus/types').Config} */
|
|
const config = {
|
|
title: 'Tianji',
|
|
tagline: 'Insight into everything',
|
|
favicon: 'img/favicon.ico',
|
|
|
|
// Set the production url of your site here
|
|
url: 'https://tianji.msgbyte.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: 'msgbyte', // Usually your GitHub org/user name.
|
|
projectName: 'tianji', // Usually your repo name.
|
|
|
|
onBrokenLinks: 'throw',
|
|
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: 'en',
|
|
locales: ['en'],
|
|
},
|
|
|
|
presets: [
|
|
[
|
|
'docusaurus-preset-openapi',
|
|
/** @type {import('docusaurus-preset-openapi').Options} */
|
|
{
|
|
api: {
|
|
path: "./openapi.json",
|
|
routeBasePath: "/api",
|
|
},
|
|
docs: {
|
|
sidebarPath: require.resolve("./sidebars.js"),
|
|
routeBasePath: "/",
|
|
editUrl:
|
|
'https://github.com/msgbyte/tianji/tree/main/website/',
|
|
},
|
|
theme: {
|
|
customCss: require.resolve("./src/css/custom.css"),
|
|
},
|
|
},
|
|
]
|
|
],
|
|
|
|
themeConfig:
|
|
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
|
|
({
|
|
// Replace with your project's social card
|
|
image: 'img/social-card.jpg',
|
|
navbar: {
|
|
title: 'Tianji',
|
|
logo: {
|
|
alt: 'Tianji Logo',
|
|
src: 'img/logo.svg',
|
|
},
|
|
items: [
|
|
// {
|
|
// type: 'docSidebar',
|
|
// sidebarId: 'tutorialSidebar',
|
|
// position: 'left',
|
|
// label: 'Tutorial',
|
|
// },
|
|
{ to: '/api', label: 'API', position: 'left' },
|
|
{
|
|
href: 'https://github.com/msgbyte/tianji',
|
|
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: 'API',
|
|
to: '/api',
|
|
},
|
|
{
|
|
label: 'GitHub',
|
|
href: 'https://github.com/msgbyte/tianji',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
copyright: `Copyright © ${new Date().getFullYear()} Tianji, Inc. Built with Msgbyte.`,
|
|
},
|
|
prism: {
|
|
theme: lightCodeTheme,
|
|
darkTheme: darkCodeTheme,
|
|
},
|
|
}),
|
|
};
|
|
|
|
module.exports = config;
|