mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-17 13:55:08 +00:00
27 lines
734 B
TypeScript
27 lines
734 B
TypeScript
import { defineConfig } from "vitepress";
|
|
import { withSidebar } from "vitepress-sidebar";
|
|
|
|
// https://vitepress.dev/reference/site-config
|
|
const vitePressOptions = {
|
|
title: "Frappe Docker Docs",
|
|
description: "Frappe in a Container",
|
|
themeConfig: {
|
|
logo: "../images/frappe_docker.png",
|
|
// https://vitepress.dev/reference/default-theme-config
|
|
nav: [{ text: "Home", link: "/" }],
|
|
|
|
socialLinks: [
|
|
{ icon: "github", link: "https://github.com/frappe/frappe_docker/" },
|
|
],
|
|
},
|
|
};
|
|
|
|
const vitePressSidebarOptions = {
|
|
documentRootPath: "./docs",
|
|
useTitleFromFrontmatter: true,
|
|
useFolderTitleFromIndexFile: true,
|
|
};
|
|
|
|
export default defineConfig(
|
|
withSidebar(vitePressOptions, vitePressSidebarOptions)
|
|
);
|