config.mts 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. import { fileURLToPath, URL } from "node:url";
  2. import { defineConfig } from "vitepress";
  3. import VueI18nPlugin from "@intlify/unplugin-vue-i18n/vite";
  4. // https://vitepress.dev/reference/site-config
  5. export default defineConfig({
  6. title: "CocoBlockly帮助文档",
  7. description: "Cococlass help documents",
  8. srcDir: "pages",
  9. // themeConfig: {
  10. // search: {
  11. // provider: "local",
  12. // },
  13. // },
  14. vite: {
  15. publicDir: "../public",
  16. plugins: [
  17. /* ... */
  18. VueI18nPlugin({
  19. /* options */
  20. // locale messages resource pre-compile option
  21. // include: resolve(dirname(fileURLToPath(import.meta.url)), './path/to/src/locales/**'),
  22. }),
  23. ],
  24. resolve: {
  25. alias: [
  26. {
  27. find: /^.*\/VPNavBar\.vue$/,
  28. replacement: fileURLToPath(
  29. new URL("../components/CustomNavBar.vue", import.meta.url)
  30. ),
  31. },
  32. {
  33. find: "@/",
  34. replacement: fileURLToPath(new URL("../", import.meta.url)),
  35. },
  36. ],
  37. },
  38. },
  39. locales: {
  40. root: {
  41. label: "简体中文",
  42. lang: "zh-CN",
  43. themeConfig: {
  44. logo: "/logo.png",
  45. siteTitle: false,
  46. // https://vitepress.dev/reference/default-theme-config
  47. // nav: [
  48. // { text: 'Home', link: '/' },
  49. // { text: 'Examples', link: '/markdown-examples' }
  50. // ],
  51. sidebar: [
  52. { text: "关于CocoBlockly X", link: "/docs" },
  53. { text: "常见问题解答", link: "/docs/faq" },
  54. {
  55. text: "开始使用CocoBlockly X",
  56. link: "/docs/start-using-cocoblockly-x",
  57. },
  58. {
  59. text: "电子模块基本教学",
  60. collapsed: true,
  61. items: [{ text: "todo", link: "/docs" }],
  62. },
  63. ],
  64. // socialLinks: [
  65. // { icon: 'github', link: 'https://github.com/vuejs/vitepress' }
  66. // ]
  67. },
  68. },
  69. "zh-HK": {
  70. label: "繁体中文",
  71. lang: "zh-HK",
  72. themeConfig: {
  73. logo: "/logo.png",
  74. siteTitle: false,
  75. // https://vitepress.dev/reference/default-theme-config
  76. // nav: [
  77. // { text: 'Home', link: '/' },
  78. // { text: 'Examples', link: '/markdown-examples' }
  79. // ],
  80. sidebar: [
  81. { text: "什麽是CocoBlockly X", link: "/zh-HK/docs" },
  82. { text: "常見問題解答", link: "/zh-HK/docs/faq" },
  83. {
  84. text: "開始使用CocoBlockly X",
  85. link: "/zh-HK/docs/start-using-cocoblockly-x",
  86. },
  87. {
  88. text: "電子模組基本教學",
  89. collapsed: true,
  90. items: [{ text: "todo", link: "/zh-HK/docs" }],
  91. },
  92. ],
  93. // socialLinks: [
  94. // { icon: 'github', link: 'https://github.com/vuejs/vitepress' }
  95. // ]
  96. },
  97. },
  98. },
  99. });