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 | fbdabc9d198324c5797eba76e939ff09bbdfea70 (patch) | |
tree | e779951bcc91a6cfe1d64af678841c18143f3ac1 /docs/sidebars.js | |
parent | f8752344320dbe92853d9b9c7685d629b065a995 (diff) | |
parent | 64333e3694e8de0f0681d076ec5f7a54a291bf68 (diff) | |
download | sncontinue-fbdabc9d198324c5797eba76e939ff09bbdfea70.tar.gz sncontinue-fbdabc9d198324c5797eba76e939ff09bbdfea70.tar.bz2 sncontinue-fbdabc9d198324c5797eba76e939ff09bbdfea70.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; |