mirror of
https://codeberg.org/cunicu/cunicu.git
synced 2025-09-26 21:01:14 +08:00
15 lines
301 B
JavaScript
15 lines
301 B
JavaScript
// @ts-check
|
|
|
|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
const sidebars = {
|
|
// By default, Docusaurus generates a sidebar from the docs folder structure
|
|
tutorialSidebar: [
|
|
{
|
|
type: 'autogenerated',
|
|
dirName: '.'
|
|
}
|
|
],
|
|
};
|
|
|
|
module.exports = sidebars;
|