tianji/website/docusaurus.config.js

183 lines
4.9 KiB
JavaScript
Raw Normal View History

2023-10-28 18:23:19 +00:00
// @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:
2024-01-08 18:06:32 +00:00
'All-in-One Insight Hub',
2023-10-28 18:23:19 +00:00
favicon: 'img/favicon.ico',
// Set the production url of your site here
url: 'https://tianji.msgbyte.com',
2023-10-28 18:23:19 +00:00
// 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.
2023-10-28 18:23:19 +00:00
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: [
[
2023-10-28 19:00:10 +00:00
'docusaurus-preset-openapi',
/** @type {import('docusaurus-preset-openapi').Options} */
{
api: {
2023-11-04 10:23:32 +00:00
path: './openapi.json',
routeBasePath: '/api',
2023-10-28 18:23:19 +00:00
},
2023-10-28 19:00:10 +00:00
docs: {
2023-11-04 10:23:32 +00:00
sidebarPath: require.resolve('./sidebars.js'),
2024-01-08 18:06:32 +00:00
routeBasePath: '/docs',
2023-11-04 10:23:32 +00:00
editUrl: 'https://github.com/msgbyte/tianji/tree/main/website/',
2023-10-28 18:23:19 +00:00
},
theme: {
2023-11-04 10:23:32 +00:00
customCss: [
require.resolve('./src/css/base.css'),
require.resolve('./src/css/custom.css'),
],
2023-10-28 18:23:19 +00:00
},
2023-10-28 19:00:10 +00:00
},
2023-11-04 10:23:32 +00:00
],
2023-10-28 18:23:19 +00:00
],
2023-11-08 16:11:01 +00:00
plugins: [require.resolve('docusaurus-plugin-image-zoom')],
2023-10-28 18:23:19 +00:00
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
// Replace with your project's social card
2023-12-25 09:33:01 +00:00
image: 'img/social-card.png',
metadata: [
{
name: 'keywords',
content:
'tianji, umami, uptime, kuma, website, analysis, monitor, serverstatus, opensource, free, docker',
},
{ name: 'twitter:card', content: 'summary_large_image' },
],
2023-10-28 18:23:19 +00:00
navbar: {
title: 'Tianji',
2023-10-28 18:23:19 +00:00
logo: {
alt: 'Tianji Logo',
2023-10-28 18:23:19 +00:00
src: 'img/logo.svg',
},
items: [
2024-01-08 18:06:32 +00:00
{
type: 'docSidebar',
sidebarId: 'tutorialSidebar',
position: 'left',
label: 'Docs',
},
2023-12-16 07:34:00 +00:00
{ to: '/changelog', label: 'Changelog', position: 'left' },
2023-10-28 19:00:10 +00:00
{ to: '/api', label: 'API', position: 'left' },
2024-01-02 16:16:05 +00:00
{
href: 'https://demo.tianji.msgbyte.com/',
label: 'Demo',
position: 'right',
},
2023-12-24 07:58:45 +00:00
{
href: 'https://discord.gg/8Vv47wAEej',
label: 'Discord',
position: 'right',
},
2023-10-28 18:23:19 +00:00
{
href: 'https://github.com/msgbyte/tianji',
2023-10-28 18:23:19 +00:00
label: 'GitHub',
position: 'right',
},
],
},
footer: {
style: 'dark',
links: [
2024-01-08 18:06:32 +00:00
{
title: 'Docs',
items: [
{
label: 'Tutorial',
to: '/docs/intro',
},
],
},
{
title: 'Community',
items: [
{
label: 'Stack Overflow',
href: 'https://stackoverflow.com/questions/tagged/tianji',
},
2023-12-24 07:58:45 +00:00
{
label: 'Discord',
href: 'https://discord.gg/8Vv47wAEej',
},
{
label: 'Twitter',
href: 'https://twitter.com/moonrailgun',
},
],
},
2023-10-28 18:23:19 +00:00
{
title: 'More',
items: [
2023-12-16 07:34:00 +00:00
{
label: 'Changelog',
to: '/changelog',
},
2023-10-28 18:23:19 +00:00
{
label: 'API',
to: '/api',
2023-10-28 18:23:19 +00:00
},
{
label: 'GitHub',
href: 'https://github.com/msgbyte/tianji',
2023-10-28 18:23:19 +00:00
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Tianji, Inc. Built with Msgbyte.`,
2023-10-28 18:23:19 +00:00
},
prism: {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
},
zoom: {
selector: '.markdown :not(em) > img',
background: {
light: 'rgb(255, 255, 255)',
2023-11-08 16:11:01 +00:00
dark: 'rgb(50, 50, 50)',
},
config: {
// options you can specify via https://github.com/francoischalifour/medium-zoom#usage
2023-11-08 16:11:01 +00:00
},
},
2023-10-28 18:23:19 +00:00
}),
2023-11-08 16:11:01 +00:00
scripts: [
{
src: 'https://tianji.moonrailgun.com/tracker.js',
async: true,
defer: true,
'data-website-id': 'clopxgjr6050tqn5dzxo7pjac',
},
],
2023-10-28 18:23:19 +00:00
};
module.exports = config;