config.mts 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. import { defineConfigWithTheme } from 'vitepress';
  2. export default defineConfigWithTheme({
  3. description: 'Vben Admin Pro & 企业级管理系统框架',
  4. lang: 'zh-CN',
  5. locales: {
  6. en: {
  7. label: 'English',
  8. lang: 'en',
  9. link: '/en/index',
  10. },
  11. root: {
  12. label: '简体中文',
  13. lang: 'zh-CN',
  14. },
  15. },
  16. srcDir: 'src',
  17. themeConfig: {
  18. editLink: {
  19. pattern: 'https://github.com/vbenjs/vue-vben-admin/edit/main/docs/:path',
  20. text: 'Edit this page on GitHub',
  21. },
  22. footer: {
  23. copyright: 'Copyright © 2024-present Vben Admin Pro',
  24. },
  25. i18nRouting: true,
  26. logo: 'https://cdn.jsdelivr.net/npm/@vbenjs/static-source@0.1.3/source/logo-v1.webp',
  27. nav: [
  28. { link: '/', text: 'Home' },
  29. { link: '/markdown-examples', text: 'Examples' },
  30. ],
  31. sidebar: [
  32. {
  33. text: 'Examples',
  34. items: [
  35. { link: '/markdown-examples', text: 'Markdown Examples' },
  36. { link: '/api-examples', text: 'Runtime API Examples' },
  37. ],
  38. },
  39. ],
  40. siteTitle: 'Vben Admin Pro',
  41. socialLinks: [
  42. { icon: 'github', link: 'https://github.com/vbenjs/vue-vben-admin' },
  43. ],
  44. },
  45. vite: {
  46. build: {
  47. chunkSizeWarningLimit: Infinity,
  48. minify: 'terser',
  49. },
  50. json: {
  51. stringify: true,
  52. },
  53. server: {
  54. fs: {
  55. allow: ['../..'],
  56. },
  57. host: true,
  58. port: 6173,
  59. },
  60. ssr: {
  61. external: ['@vue/repl'],
  62. },
  63. },
  64. });