123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- import { defineUserConfig } from 'vuepress'
- import recoTheme from 'vuepress-theme-reco'
- import { viteBundler } from '@vuepress/bundler-vite'
- export default defineUserConfig({
- title: "lowflow",
- description: "综合智慧云平台(CWP)1",
- bundler: viteBundler(),
- head: [
- ['link', { rel: 'icon', href: '/logo.png' }]
- ],
- theme: recoTheme({
- style: "@vuepress-reco/style-default",
- primaryColor: '#409EFF',
- logo: "/logo.png",
- author: "caixiaofeng",
- authorAvatar: "/head.png",
- docsRepo: "https://",
- docsBranch: "main",
- docsDir: "example",
- lastUpdatedText: "",
- // series 为原 sidebar
- series: {
- "/docs/business/": [
- {
- text: "商业版",
- children: ["pro"],
- },
- {
- text: "功能介绍",
- children: ["formDesigner", "processDesigner",'startProcess','todo'],
- },
- ],
- "/docs/document/": [
- {
- text: "前端",
- children: ["frontend"],
- },
- {
- text: "后端",
- children: ["backend","introduction"],
- },
- ]
- },
- navbar: [
- {text: "主页", link: "/"},
- {text: "文档", link: "/docs/document/frontend"},
- {text: "授权", link: "/docs/business/pro"},
- {
- text: "演示地址",
- link: ""
- },
- {
- text: "开源版",
- children: [
- {text: "流程设计器", link: "/docs/theme-reco/theme"},
- {text: "转bpmn后端", link: "/blogs/other/guide"},
- ],
- },
- ],
- bulletin: {
- body: [
- {
- type: "title",
- content: "QQ群/微信群",
- },
- {
- type: "text",
- content: `
- <ul>
- <li>添加微信(备注加群)</li>
- <image src="/wx.jpg" alt="wx" width="70" height="70"></image>
- </ul>`,
- style: "font-size: 12px;",
- },
- {
- type: "text",
- content: `
- <ul>
- <li>QQ群:</li>
- </ul>`,
- style: "font-size: 12px;",
- },
- {
- type: "hr",
- },
- {
- type: "title",
- content: "Gitee/Github",
- },
- {
- type: "text",
- content: `
- <ul>
- <li><a href="">Gitee<a/></li>
- <li><a href="https://">Github<a/></li>
- </ul>`,
- style: "font-size: 12px;",
- },
- ],
- }
- }),
- // debug: true,
- });
|