Files
medusa-store/www/apps/user-guide/config/index.ts
Shahed Nasser 4fe28f5a95 chore: reorganize docs apps (#7228)
* reorganize docs apps

* add README

* fix directory

* add condition for old docs
2024-05-03 17:36:38 +03:00

14 lines
387 B
TypeScript

import { DocsConfig } from "types"
import { mobileSidebarItems } from "docs-ui"
import { generatedSidebar as sidebar } from "@/generated/sidebar.mjs"
export const config: DocsConfig = {
titleSuffix: "Medusa Admin User Guide",
baseUrl: process.env.NEXT_PUBLIC_BASE_URL || "http://localhost:3000",
sidebar: {
top: sidebar,
bottom: [],
mobile: mobileSidebarItems,
},
}