Files
medusa-store/www/apps/resources/sidebars/examples.mjs
2025-03-10 08:33:21 +02:00

49 lines
1.1 KiB
JavaScript

/** @type {import('types').Sidebar.SidebarItem[]} */
export const examplesSidebar = [
{
type: "sidebar",
sidebar_id: "examples",
title: "Examples",
children: [
{
type: "ref",
path: "/recipes",
title: "Recipes",
},
{
type: "ref",
path: "/plugins",
title: "Plugins",
},
{
type: "ref",
path: "/integrations",
title: "Integrations",
},
{
type: "category",
title: "Server Examples",
autogenerate_tags: "example+server",
autogenerate_as_ref: true,
sort_sidebar: "alphabetize",
},
{
type: "category",
title: "Admin Examples",
autogenerate_tags: "example+admin",
autogenerate_as_ref: true,
sort_sidebar: "alphabetize",
children: [],
},
{
type: "category",
title: "Storefront Examples",
autogenerate_tags: "example+storefront",
autogenerate_as_ref: true,
sort_sidebar: "alphabetize",
children: [],
},
],
},
]