Files
medusa-store/www/apps/resources/config/index.ts
Shahed Nasser 98de6b6ca3 docs: design fixes to toc and related elements (#12747)
* docs: design fixes to toc and related elements

* change header styling

* fix heading styles

* design fixes

* fix showing badges in toc
2025-06-27 10:34:15 +03:00

34 lines
815 B
TypeScript

import { DocsConfig } from "types"
import { globalConfig } from "docs-ui"
import { basePathUrl } from "../utils/base-path-url"
const baseUrl = process.env.NEXT_PUBLIC_BASE_URL || "http://localhost:3000"
export const config: DocsConfig = {
...globalConfig,
titleSuffix: "Medusa Documentation",
baseUrl,
basePath: process.env.NEXT_PUBLIC_BASE_PATH,
sidebars: [],
project: {
title: "Development Resources",
key: "resources",
},
breadcrumbOptions: {
startItems: [
{
title: "Documentation",
link: baseUrl,
},
],
},
logo: `${process.env.NEXT_PUBLIC_BASE_PATH}/images/logo.png`,
version: {
...globalConfig.version,
bannerImage: {
light: basePathUrl("/images/release.png"),
dark: basePathUrl("/images/release-dark.png"),
},
},
}