- Fix text of download button - Small fix to styling on small devies - Fix mobile sidebar items using incorrect base url
12 lines
319 B
TypeScript
12 lines
319 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(baseUrl),
|
|
}
|