config.js 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. import { viteBundler } from '@vuepress/bundler-vite'
  2. import { defaultTheme } from '@vuepress/theme-default'
  3. import { defineUserConfig } from 'vuepress'
  4. export default defineUserConfig({
  5. bundler: viteBundler(),
  6. theme: defaultTheme(
  7. {
  8. repo: 'DragonOS-Community/community',
  9. repoLabel: 'GitHub',
  10. // 默认是 false, 设置为 true 来启用
  11. editLinks: true,
  12. // 默认为 "Edit this page"
  13. editLinkText: '帮助我们改善此页面!',
  14. smoothScroll: true,
  15. docsBranch: 'master',
  16. logo: '/images/dragonos-full-logo.svg',
  17. nextLinks: true,
  18. navbar: [
  19. {
  20. 'text': '首页',
  21. 'link': '/',
  22. },
  23. {
  24. 'text': '社区治理',
  25. 'link': '/governance/',
  26. },
  27. {
  28. 'text': '交流',
  29. 'link': '/communication/',
  30. },
  31. {
  32. 'text': '贡献者',
  33. 'link': '/contributors/',
  34. },
  35. {
  36. 'text': 'SIGs',
  37. 'link': '/sigs/',
  38. },
  39. ],
  40. sidebar: {
  41. '/': 'heading',
  42. '/governance/': [
  43. {
  44. text: '社区治理',
  45. children: [
  46. '/governance/',
  47. '/governance/community-membership.md',
  48. ]
  49. }
  50. ]
  51. }
  52. }
  53. ),
  54. lang: 'zh-CN',
  55. title: '',
  56. })