mirror of
https://codeberg.org/cunicu/cunicu.git
synced 2026-04-24 08:01:42 +08:00
2da5d48215
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
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;
|