diff options
author | Ty Dunn <ty@tydunn.com> | 2023-05-30 16:03:57 +0200 |
---|---|---|
committer | Ty Dunn <ty@tydunn.com> | 2023-05-30 16:03:57 +0200 |
commit | 32cf308de6f6304189c1c74eb2fe34e1174095d9 (patch) | |
tree | 39e9fe4b81776e9edfd56d28d29e68935d96b27e /docs/sidebars.js | |
parent | f7d9d1b2f4e3a2187a93f3e8d1e10bdc9b03fbc8 (diff) | |
parent | 3dc31f7ae4aa3d618e28045f3e0585ef2875c8d6 (diff) | |
download | sncontinue-32cf308de6f6304189c1c74eb2fe34e1174095d9.tar.gz sncontinue-32cf308de6f6304189c1c74eb2fe34e1174095d9.tar.bz2 sncontinue-32cf308de6f6304189c1c74eb2fe34e1174095d9.zip |
Merge branch 'docs' of github.com:continuedev/continue into docs
Diffstat (limited to 'docs/sidebars.js')
-rw-r--r-- | docs/sidebars.js | 49 |
1 files changed, 24 insertions, 25 deletions
diff --git a/docs/sidebars.js b/docs/sidebars.js index a8138432..e232ceeb 100644 --- a/docs/sidebars.js +++ b/docs/sidebars.js @@ -13,40 +13,39 @@ /** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */ const sidebars = { - docsSidebar: [ - 'intro', - 'getting-started', - 'install', - 'how-continue-works', + "intro", + "getting-started", + "install", + "how-continue-works", { - type: 'category', - label: 'Walkthroughs', + type: "category", + label: "Walkthroughs", items: [ - 'walkthroughs/use-the-gui', - 'walkthroughs/use-a-recipe', - 'walkthroughs/create-a-recipe', - 'walkthroughs/share-a-recipe', + "walkthroughs/use-the-gui", + "walkthroughs/use-a-recipe", + "walkthroughs/create-a-recipe", + "walkthroughs/share-a-recipe", ], }, { - type: 'category', - label: 'Concepts', + type: "category", + label: "Concepts", items: [ - 'concepts/autopilot', - 'concepts/core', - 'concepts/gui', - 'concepts/history', - 'concepts/ide', - 'concepts/llm', - 'concepts/policy', - 'concepts/recipe', - 'concepts/sdk', - 'concepts/step', + "concepts/autopilot", + "concepts/core", + "concepts/gui", + "concepts/history", + "concepts/ide", + "concepts/llm", + "concepts/policy", + "concepts/recipe", + "concepts/sdk", + "concepts/step", ], }, - 'telemetry', + "telemetry", ], }; -module.exports = sidebars;
\ No newline at end of file +module.exports = sidebars; |