14 lines
387 B
TypeScript
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,
|
|
},
|
|
}
|