* docs: editing and general fixes of medusa's learning resources * fix build script * update ui dependency * fix build * adjust next.js steps
15 lines
439 B
TypeScript
15 lines
439 B
TypeScript
import { DocsConfig } from "types"
|
|
import { mobileSidebarItemsV2 } from "docs-ui"
|
|
import { generatedSidebar } from "../generated/sidebar.mjs"
|
|
|
|
export const config: DocsConfig = {
|
|
titleSuffix: "Medusa Learning Resources",
|
|
baseUrl: process.env.NEXT_PUBLIC_BASE_URL || "http://localhost:3000",
|
|
basePath: process.env.NEXT_PUBLIC_BASE_PATH,
|
|
sidebar: {
|
|
top: generatedSidebar,
|
|
bottom: [],
|
|
mobile: mobileSidebarItemsV2,
|
|
},
|
|
}
|