config.mts 804 B

1234567891011121314151617181920212223242526272829303132
  1. import { fileURLToPath, URL } from 'node:url'
  2. import { defineConfig } from 'vitepress'
  3. // https://vitepress.dev/reference/site-config
  4. export default defineConfig({
  5. title: "Cococlass Help Documents",
  6. description: "Cococlass help documents",
  7. themeConfig: {
  8. // https://vitepress.dev/reference/default-theme-config
  9. search: {
  10. provider: 'local'
  11. },
  12. nav: [
  13. { text: 'Home', link: '/' },
  14. { text: 'Examples', link: '/markdown-examples' }
  15. ],
  16. sidebar: [
  17. {
  18. text: 'Examples',
  19. items: [
  20. { text: 'Markdown Examples', link: '/markdown-examples' },
  21. { text: 'Runtime API Examples', link: '/api-examples' }
  22. ]
  23. }
  24. ],
  25. socialLinks: [
  26. { icon: 'github', link: 'https://github.com/vuejs/vitepress' }
  27. ]
  28. }
  29. })