mirror of
https://github.com/runyanjake/jake.runyan.dev.git
synced 2025-10-04 13:57:29 -07:00
15 lines
288 B
JavaScript
15 lines
288 B
JavaScript
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
const sidebars = {
|
|
tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
|
|
|
|
aboutSidebar: [
|
|
{
|
|
type: 'doc',
|
|
label: 'About Me',
|
|
id: 'about/about-me'
|
|
},
|
|
],
|
|
};
|
|
|
|
export default sidebars;
|