config.mts 5.2 KB

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