Files
medusa-store/www/apps/resources/config/index.ts
Shahed Nasser 7cb90f8e82 docs: editing and general fixes of medusa's learning resources (#7261)
* docs: editing and general fixes of medusa's learning resources

* fix build script

* update ui dependency

* fix build

* adjust next.js steps
2024-05-13 18:55:11 +03:00

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,
},
}