Files
medusa-store/www/apps/api-reference/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

25 lines
490 B
TypeScript

import { DocsConfig } from "types"
const baseUrl = process.env.NEXT_PUBLIC_BASE_URL || "http://localhost:3000"
export const config: DocsConfig = {
baseUrl,
basePath: process.env.NEXT_PUBLIC_BASE_PATH,
// sidebar is auto generated
sidebar: {
default: [
{
type: "link",
title: "Introduction",
path: "introduction",
loaded: true,
},
],
mobile: [],
},
project: {
title: "API Reference",
key: "api-reference",
},
}