feat: implement requested changes

This commit is contained in:
jinhojang6
2023-09-21 02:40:59 +09:00
parent 889bbb42a1
commit 11d940574c
15 changed files with 95 additions and 23 deletions

View File

@@ -7,8 +7,8 @@ const katex = require('rehype-katex')
/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'Logos',
url: 'https://logos.co/',
title: 'VacResearch',
url: 'https://vac.dev/',
baseUrl: '/',
markdown: {
@@ -37,6 +37,7 @@ const config = {
},
docs: {
id: 'Docs',
breadcrumbs: false,
routeBasePath: '/',
sidebarPath: 'docs/sidebars.js',
remarkPlugins: [math],
@@ -54,7 +55,7 @@ const config = {
id: 'blog',
routeBasePath: '/rlog',
path: 'rlog',
blogTitle: 'Research Log',
blogTitle: 'Research Blog',
blogSidebarCount: 0,
authorsMapPath: 'authors.yml',
remarkPlugins: [math],
@@ -83,12 +84,19 @@ const config = {
type: 'search',
},
{
label: 'About',
label: 'About Vac',
to: '/',
activeBaseRegex: '^/$',
},
{
label: 'Research Log',
label: 'Community',
to: '/community',
activeBasePath: 'community',
},
{
label: 'Research Blog',
to: '/rlog',
activeBasePath: 'rlog',
},
],
},