Files
medusa-store/www/apps/cloud/sidebar.mjs
Shahed Nasser 0823deb25f docs: added cloud environments documentation (#12750)
* initial

* finished environments page

* fixes

* fixes

* fix to introduction
2025-06-16 19:03:58 +03:00

40 lines
769 B
JavaScript

/** @type {import('types').Sidebar.RawSidebar[]} */
export const sidebar = [
{
sidebar_id: "cloud",
title: "Cloud",
items: [
{
type: "link",
path: "/",
title: "Introduction",
},
{
type: "separator",
},
{
type: "category",
title: "Basics",
initialOpen: true,
children: [
{
type: "link",
title: "Organizations",
path: "/organizations",
},
{
type: "link",
title: "Projects",
path: "/projects",
},
{
type: "link",
title: "Environments",
path: "/environments",
},
],
},
],
},
]