config.js 526 B

1234567891011121314151617181920
  1. module.exports = {
  2. theme:"antdocs",
  3. title: "集成框架",
  4. description: "开发框架",
  5. base: "/",
  6. head: [
  7. ["link",{ rel: "icon",href: "http://persagy-assets.oss-cn-beijing.aliyuncs.com/OfficialWebsite/img/index/logo_footer.png" }]
  8. ],
  9. markdown: {
  10. lineNumbers: true,
  11. },
  12. themeConfig: {
  13. smoothScroll: true,
  14. nav: require("./config/nav"),
  15. sidebar: require("./config/sidebar"),
  16. lastUpdated: "Last Updated",
  17. repo: "https://github.com/zpfz/vuepress-creator",
  18. editLinks: false,
  19. },
  20. };