Files
medusa-store/www/apps/cloud/sidebar.mjs
Shahed Nasser f12fb7dfad docs: added cloud deployments guide (#12755)
* docs: added cloud deployments guide

* fixes

* fixes

* fixes
2025-06-17 15:57:41 +03:00

45 lines
888 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",
},
{
type: "link",
title: "Deployments",
path: "/deployments",
},
],
},
],
},
]