mirror of
https://github.com/bspeice/speice.io
synced 2024-11-14 22:18:10 -05:00
98 lines
2.5 KiB
TypeScript
98 lines
2.5 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: 'My Site',
|
||
|
tagline: 'Dinosaurs are cool',
|
||
|
favicon: 'img/favicon.ico',
|
||
|
|
||
|
// Set the production url of your site here
|
||
|
url: 'https://speice.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: '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: 'en',
|
||
|
locales: ['en'],
|
||
|
},
|
||
|
|
||
|
presets: [
|
||
|
[
|
||
|
'classic',
|
||
|
{
|
||
|
docs: false,
|
||
|
blog: {
|
||
|
routeBasePath: "/",
|
||
|
showReadingTime: true,
|
||
|
feedOptions: {
|
||
|
type: ['rss', 'atom'],
|
||
|
xslt: true,
|
||
|
},
|
||
|
// Useful options to enforce blogging best practices
|
||
|
onInlineTags: 'warn',
|
||
|
onInlineAuthors: 'warn',
|
||
|
onUntruncatedBlogPosts: 'warn',
|
||
|
},
|
||
|
} satisfies Preset.Options,
|
||
|
],
|
||
|
],
|
||
|
|
||
|
themeConfig: {
|
||
|
// Replace with your project's social card
|
||
|
image: 'img/docusaurus-social-card.jpg',
|
||
|
navbar: {
|
||
|
title: 'My Site',
|
||
|
logo: {
|
||
|
alt: 'My Site Logo',
|
||
|
src: 'img/logo.svg',
|
||
|
},
|
||
|
items: [
|
||
|
{to: '/', label: 'Blog', position: 'left'},
|
||
|
{
|
||
|
href: 'https://github.com/facebook/docusaurus',
|
||
|
label: 'GitHub',
|
||
|
position: 'right',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
footer: {
|
||
|
style: 'dark',
|
||
|
links: [
|
||
|
{
|
||
|
title: 'More',
|
||
|
items: [
|
||
|
{
|
||
|
label: 'Blog',
|
||
|
to: '/',
|
||
|
},
|
||
|
{
|
||
|
label: 'GitHub',
|
||
|
href: 'https://github.com/facebook/docusaurus',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
],
|
||
|
copyright: `Copyright © ${new Date().getFullYear()} My Project, Inc. Built with Docusaurus.`,
|
||
|
},
|
||
|
prism: {
|
||
|
theme: prismThemes.github,
|
||
|
darkTheme: prismThemes.dracula,
|
||
|
},
|
||
|
} satisfies Preset.ThemeConfig,
|
||
|
};
|
||
|
|
||
|
export default config;
|