* docs: create a new UI docs project (#13233) * docs: create a new UI docs project * fix installation errors * docs: migrate UI docs content to new project (#13241) * Fix content * added examples for some components * finish adding examples * lint fix * fix build errors * delete empty files * path fixes + refactor * fix build error
31 lines
718 B
TypeScript
31 lines
718 B
TypeScript
import { DocsConfig, Sidebar } from "types"
|
|
import { generatedSidebars } from "@/generated/sidebar.mjs"
|
|
import { globalConfig } from "docs-ui"
|
|
|
|
const baseUrl = process.env.NEXT_PUBLIC_BASE_URL || "http://localhost:3000"
|
|
|
|
export const config: DocsConfig = {
|
|
...globalConfig,
|
|
titleSuffix: "Medusa UI",
|
|
baseUrl,
|
|
basePath: process.env.NEXT_PUBLIC_BASE_PATH,
|
|
sidebars: generatedSidebars as Sidebar.Sidebar[],
|
|
project: {
|
|
title: "UI",
|
|
key: "ui",
|
|
},
|
|
logo: `${process.env.NEXT_PUBLIC_BASE_PATH}/images/logo.png`,
|
|
breadcrumbOptions: {
|
|
startItems: [
|
|
{
|
|
title: "Documentation",
|
|
link: baseUrl,
|
|
},
|
|
],
|
|
},
|
|
version: {
|
|
...globalConfig.version,
|
|
hide: true,
|
|
},
|
|
}
|