// @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 // pathname under which your site is served // For GitHub pages deployment, it is often '//' 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/base.css'), require.resolve('./src/css/custom.css'), ], }, }, ], ], plugins: [require.resolve('docusaurus-plugin-image-zoom')], 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: '/changelog', label: 'Changelog', position: 'left' }, { 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: 'Changelog', to: '/changelog', }, { 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, }, zoom: { selector: '.markdown :not(em) > img', background: { light: 'rgb(255, 255, 255)', dark: 'rgb(50, 50, 50)', }, config: { // options you can specify via https://github.com/francoischalifour/medium-zoom#usage }, }, }), scripts: [ { src: 'https://tianji.moonrailgun.com/tracker.js', async: true, defer: true, 'data-website-id': 'clopxgjr6050tqn5dzxo7pjac', }, ], }; module.exports = config;