config.mts 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. import { fileURLToPath, URL } from "node:url";
  2. import { defineConfig } from "vitepress";
  3. import VueI18nPlugin from "@intlify/unplugin-vue-i18n/vite";
  4. import Icons from "unplugin-icons/vite";
  5. // import Components from 'unplugin-vue-components/vite'
  6. import { FileSystemIconLoader } from "unplugin-icons/loaders";
  7. import {
  8. SVG,
  9. cleanupSVG,
  10. parseColors,
  11. runSVGO,
  12. deOptimisePaths,
  13. importDirectory,
  14. } from "@iconify/tools";
  15. import { compareColors, stringToColor } from "@iconify/utils/lib/colors";
  16. // https://vitepress.dev/reference/site-config
  17. export default defineConfig({
  18. title: "CocoBlockly帮助文档",
  19. description: "Cococlass help documents",
  20. srcDir: "pages",
  21. // themeConfig: {
  22. // search: {
  23. // provider: "local",
  24. // },
  25. // },
  26. vite: {
  27. publicDir: "../public",
  28. plugins: [
  29. VueI18nPlugin({
  30. /* options */
  31. // locale messages resource pre-compile option
  32. // include: resolve(dirname(fileURLToPath(import.meta.url)), './path/to/src/locales/**'),
  33. }),
  34. Icons({
  35. compiler: "vue3",
  36. customCollections: {
  37. "ccrbi-plain": FileSystemIconLoader(
  38. "assets/icons/plain",
  39. async (svgStr) => {
  40. const svg = new SVG(svgStr);
  41. cleanupSVG(svg);
  42. parseColors(svg, {
  43. defaultColor: "currentColor",
  44. callback: (attr, colorStr, color) => {
  45. // console.log('Color:', colorStr, color);
  46. // 普通图标
  47. return "currentColor";
  48. // Change black to 'currentColor'
  49. // const blackColor = stringToColor("black");
  50. // if (color && compareColors(color, blackColor!)) {
  51. // return "currentColor";
  52. // }
  53. // switch (color?.type) {
  54. // case "none":
  55. // case "current":
  56. // return color;
  57. // }
  58. // throw new Error(
  59. // `Unexpected color "${colorStr}" in attribute ${attr}`
  60. // );
  61. },
  62. });
  63. // Optimise, but do not change shapes because they are animated
  64. runSVGO(svg, {
  65. keepShapes: true,
  66. });
  67. return svg.toMinifiedString({});
  68. }
  69. ),
  70. "ccrbi-colored": FileSystemIconLoader(
  71. "assets/icons/colored",
  72. async (svgStr) => {
  73. const svg = new SVG(svgStr);
  74. cleanupSVG(svg);
  75. // Optimise, but do not change shapes because they are animated
  76. runSVGO(svg, {
  77. keepShapes: true,
  78. });
  79. return svg.toMinifiedString({});
  80. }
  81. ),
  82. },
  83. }),
  84. ],
  85. resolve: {
  86. alias: [
  87. {
  88. find: /^.*\/VPNavBar\.vue$/,
  89. replacement: fileURLToPath(
  90. new URL("../components/CustomNavBar.vue", import.meta.url)
  91. ),
  92. },
  93. {
  94. find: "@/",
  95. replacement: fileURLToPath(new URL("../", import.meta.url)),
  96. },
  97. ],
  98. },
  99. },
  100. locales: {
  101. root: {
  102. label: "简体中文",
  103. lang: "zh-CN",
  104. themeConfig: {
  105. logo: "/logo.png",
  106. siteTitle: false,
  107. // https://vitepress.dev/reference/default-theme-config
  108. // nav: [
  109. // { text: 'Home', link: '/' },
  110. // { text: 'Examples', link: '/markdown-examples' }
  111. // ],
  112. sidebar: [
  113. { text: "关于CocoBlockly X", link: "/docs" },
  114. { text: "常见问题解答", link: "/docs/faq" },
  115. {
  116. text: "开始使用CocoBlockly X",
  117. link: "/docs/start-using-cocoblockly-x",
  118. },
  119. {
  120. text: "电子模块基本教学",
  121. collapsed: true,
  122. items: [{ text: "todo", link: "/docs" }],
  123. },
  124. ],
  125. // socialLinks: [
  126. // { icon: 'github', link: 'https://github.com/vuejs/vitepress' }
  127. // ]
  128. },
  129. },
  130. "zh-HK": {
  131. label: "繁体中文",
  132. lang: "zh-HK",
  133. themeConfig: {
  134. logo: "/logo.png",
  135. siteTitle: false,
  136. // https://vitepress.dev/reference/default-theme-config
  137. // nav: [
  138. // { text: 'Home', link: '/' },
  139. // { text: 'Examples', link: '/markdown-examples' }
  140. // ],
  141. sidebar: [
  142. { text: "什麽是CocoBlockly X", link: "/zh-HK/docs" },
  143. { text: "常見問題解答", link: "/zh-HK/docs/faq" },
  144. {
  145. text: "開始使用CocoBlockly X",
  146. link: "/zh-HK/docs/start-using-cocoblockly-x",
  147. },
  148. {
  149. text: "電子模組基本教學",
  150. collapsed: true,
  151. items: [{ text: "todo", link: "/zh-HK/docs" }],
  152. },
  153. ],
  154. // socialLinks: [
  155. // { icon: 'github', link: 'https://github.com/vuejs/vitepress' }
  156. // ]
  157. },
  158. },
  159. },
  160. });