var deploy = require('./sidebar/deploy'); module.exports = { title: "数字化交付参考文档", description: "上格云数字化交付参考文档", base: "/docs/", // plugins: ["@vuepress/last-updated"], plugins: ['@vuepress/back-to-top'], markdown: { lineNumbers: true }, themeConfig: { logo: "/assets/img/logo.png", nav: [ {text: "首页", link: "/"}, {text: "安装部署", link: "/deploy/"}, { text: "开发文档", items: [ { text: "后台开发", items: [ {text: "数据中心", link: "/datacenter/"}, {text: "模型管理", link: "/module/"} ] }, { text: "Revit二开", items: [ {text: "服务端Revit", link: "/revit/datacenter/"}, {text: "Revit插件", link: "/revit/module/"} ] }, { text: "Web开发", items: [ { text: "Sybotan Graphy 引擎", link: "http://docs.sybotan.com:88/api/web/graphy/" } ] }, { text: "移动端开发", items: [ { text: "Sybotan Graphy 引擎", link: "http://docs.sybotan.com:88/api/web/graphy/" } ] } ] }, { text: "API参考", items: [ { text: "后台开发", items: [ { text: "Sybotan Graphy 引擎", link: "http://docs.sybotan.com:88/api/web/graphy/" } ] }, { text: "Web开发", items: [ { text: "Sybotan Graphy 引擎", link: "http://docs.sybotan.com:88/api/web/graphy/" } ] }, { text: "移动端开发", items: [ { text: "Sybotan Graphy 引擎", link: "http://docs.sybotan.com:88/api/web/graphy/" } ] } ] }, {text: "编码风格", link: "/style/"} ], displayAllHeaders: true, sidebarDepth: 2, sidebar: { "/deploy/": deploy } } };