From b79f851b9c3da2bbc09ce5c371e2a64aee7d5f3c Mon Sep 17 00:00:00 2001 From: IshuaWang <150354049+IshuaWang@users.noreply.github.com> Date: Fri, 20 Dec 2024 19:10:00 +0800 Subject: [PATCH] Delete sidebars.ts --- sidebars.ts | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 sidebars.ts diff --git a/sidebars.ts b/sidebars.ts deleted file mode 100644 index acc7685..0000000 --- a/sidebars.ts +++ /dev/null @@ -1,31 +0,0 @@ -import type {SidebarsConfig} from '@docusaurus/plugin-content-docs'; - -/** - * Creating a sidebar enables you to: - - create an ordered group of docs - - render a sidebar for each doc of that group - - provide next/previous navigation - - The sidebars can be generated from the filesystem, or explicitly defined here. - - Create as many sidebars as you want. - */ -const sidebars: SidebarsConfig = { - // By default, Docusaurus generates a sidebar from the docs folder structure - tutorialSidebar: [{type: 'autogenerated', dirName: '.'}], - - // But you can create a sidebar manually - /* - tutorialSidebar: [ - 'intro', - 'hello', - { - type: 'category', - label: 'Tutorial', - items: ['tutorial-basics/create-a-document'], - }, - ], - */ -}; - -export default sidebars;