mirror of
https://codeberg.org/cunicu/cunicu.git
synced 2025-09-26 12:51:50 +08:00
18 lines
415 B
JavaScript
18 lines
415 B
JavaScript
// SPDX-FileCopyrightText: 2023-2025 Steffen Vogel <post@steffenvogel.de>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// @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;
|