123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- 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
- }
- }
- };
|