* changed to new sidebar across projects except resources * finalize multi sidebar support * clean up * remove redundant property * small changes * fixes * generate * fix error * fix initial open
28 lines
574 B
JavaScript
28 lines
574 B
JavaScript
/** @type {import('types').Sidebar.SidebarItem[]} */
|
|
export const pluginsSidebar = [
|
|
{
|
|
type: "sidebar",
|
|
sidebar_id: "plugins",
|
|
title: "Plugins",
|
|
children: [
|
|
{
|
|
type: "link",
|
|
title: "Overview",
|
|
path: "/plugins",
|
|
},
|
|
{
|
|
type: "category",
|
|
title: "Guides",
|
|
children: [
|
|
{
|
|
type: "link",
|
|
title: "Wishlist",
|
|
path: "/plugins/guides/wishlist",
|
|
description: "Learn how to build a wishlist plugin.",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
]
|