teadocs.config.js 494 B

123456789101112131415161718192021222324
  1. 'use strict';
  2. const path = require('path')
  3. module.exports = {
  4. doc: {
  5. name: "服务器部署文档",
  6. description: "上格云服务器部署运维文档。",
  7. version: "1.0.0",
  8. dir: "./docs",
  9. outDir: "./build",
  10. staticDir: "./docs/static"
  11. },
  12. theme: {
  13. dir: "",
  14. title: "",
  15. headHtml: "",
  16. footHtml: "",
  17. isMinify: true,
  18. rootPath: "/doc/deploy/"
  19. },
  20. nav: {
  21. tree: "./tree"
  22. }
  23. }