Files
medusa-store/www/apps/book/config/index.ts
Shahed Nasser 49a91fd40e docs: redesigned navigation (#9525)
Redesign navigation bar to reflect new design and allow for dropdowns

Closes DX-943
2024-10-11 07:10:00 +00:00

19 lines
428 B
TypeScript

import { DocsConfig } from "types"
import { sidebarConfig } from "./sidebar"
const baseUrl = process.env.NEXT_PUBLIC_BASE_URL || "http://localhost:3000"
export const config: DocsConfig = {
titleSuffix: "Medusa v2 Docs",
baseUrl,
basePath: process.env.NEXT_PUBLIC_BASE_PATH,
sidebar: sidebarConfig,
project: {
title: "Documentation",
key: "book",
},
breadcrumbOptions: {
showCategories: false,
},
}