123456789101112131415161718192021222324252627282930313233343536 |
- import { defineConfig } from "vitepress";
- export default defineConfig({
- title: "advich-web技术文档",
- description: "advich-web技术文档",
- themeConfig: {
- nav: [],
- sidebar: {
- "/": [
- {
- text: "",
- items: [
- {
- text: "npm私服",
- link: "/npm",
- },
- {
- text: "大屏案例(只含布局)",
- link: "/dashboard",
- items: [
- {
- text: "跨境电商运营数据可视化看板",
- link: "/dashboard/跨境电商运营数据可视化看板",
- },
- {
- text: "网络系统数据监控平台",
- link: "/dashboard/网络系统数据监控平台",
- },
- ],
- },
- ],
- },
- ],
- },
- },
- });
|