/**1* Creating a sidebar enables you to:2- create an ordered group of docs3- render a sidebar for each doc of that group4- provide next/previous navigation56The sidebars can be generated from the filesystem, or explicitly defined here.78Create as many sidebars as you want.9*/1011// @ts-check1213/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */14const sidebars = {15// By default, Docusaurus generates a sidebar from the docs folder structure16tutorialSidebar: [17{ type: "autogenerated", dirName: "." },1819{20type: "category",21label: "Resources",22collapsed: true,23items: [24{25type: "link",26label: "Ignite CLI on Github",27href: "https://github.com/ignite/cli",28},29{30type: "link",31label: "Ignite Tutorials",32href: "https://tutorials.ignite.com/",33},34{35type: "link",36label: "Cosmos SDK Docs",37href: "https://docs.cosmos.network/",38},39],40},41],4243// But you can create a sidebar manually44/*45tutorialSidebar: [46{47type: 'category',48label: 'Tutorial',49items: ['hello'],50},51],52*/53};5455module.exports = sidebars;565758