123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- import { fileURLToPath, URL } from "node:url";
- import { defineConfig } from "vitepress";
- import VueI18nPlugin from "@intlify/unplugin-vue-i18n/vite";
- import Icons from "unplugin-icons/vite";
- // import Components from 'unplugin-vue-components/vite'
- import { FileSystemIconLoader } from "unplugin-icons/loaders";
- import {
- SVG,
- cleanupSVG,
- parseColors,
- runSVGO,
- deOptimisePaths,
- importDirectory,
- } from "@iconify/tools";
- import { compareColors, stringToColor } from "@iconify/utils/lib/colors";
- console.log('123')
- await new Promise(resolve => setTimeout(resolve, 1000))
- console.log('456')
- // https://vitepress.dev/reference/site-config
- export default defineConfig({
- title: "CocoBlockly帮助文档",
- description: "Cococlass help documents",
- srcDir: "pages",
- // themeConfig: {
- // search: {
- // provider: "local",
- // },
- // },
- appearance: false,
- vite: {
- publicDir: "../public",
- envDir: '../',
- // optimizeDeps: {
- // include: ["vue-i18n"],
- // },
- ssr: {
- // SSG Vue-i18n workaround
- noExternal: [/vue-i18n/],
- },
- plugins: [
- VueI18nPlugin({
- /* options */
- // locale messages resource pre-compile option
- // include: resolve(dirname(fileURLToPath(import.meta.url)), './path/to/src/locales/**'),
- }),
- Icons({
- compiler: "vue3",
- customCollections: {
- "ccrbi-plain": FileSystemIconLoader(
- "assets/icons/plain",
- async (svgStr) => {
- const svg = new SVG(svgStr);
- cleanupSVG(svg);
- parseColors(svg, {
- defaultColor: "currentColor",
- callback: (attr, colorStr, color) => {
- // console.log('Color:', colorStr, color);
- // 普通图标
- return "currentColor";
- // Change black to 'currentColor'
- // const blackColor = stringToColor("black");
- // if (color && compareColors(color, blackColor!)) {
- // return "currentColor";
- // }
- // switch (color?.type) {
- // case "none":
- // case "current":
- // return color;
- // }
- // throw new Error(
- // `Unexpected color "${colorStr}" in attribute ${attr}`
- // );
- },
- });
- // Optimise, but do not change shapes because they are animated
- runSVGO(svg, {
- keepShapes: true,
- });
- return svg.toMinifiedString({});
- }
- ),
- "ccrbi-colored": FileSystemIconLoader(
- "assets/icons/colored",
- async (svgStr) => {
- const svg = new SVG(svgStr);
- cleanupSVG(svg);
- // Optimise, but do not change shapes because they are animated
- runSVGO(svg, {
- keepShapes: true,
- });
- return svg.toMinifiedString({});
- }
- ),
- },
- }),
- ],
- resolve: {
- alias: [
- {
- find: /^.*\/VPNavBar\.vue$/,
- replacement: fileURLToPath(
- new URL("../components/CustomNavBar.vue", import.meta.url)
- ),
- },
- {
- find: "@/",
- replacement: fileURLToPath(new URL("../", import.meta.url)),
- },
- ],
- },
- },
- locales: {
- root: {
- label: "简体中文",
- lang: "zh-CN",
- themeConfig: {
- logo: "/logo.png",
- siteTitle: false,
- // https://vitepress.dev/reference/default-theme-config
- // nav: [
- // { text: 'Home', link: '/' },
- // { text: 'Examples', link: '/markdown-examples' }
- // ],
- sidebar: [
- { text: "关于CocoBlockly X", link: "/docs" },
- { text: "常见问题解答", link: "/docs/常见问题解答" },
- {
- text: "开始使用CocoBlockly X",
- link: "/docs/start-using-cocoblockly-x",
- },
- {
- text: "电子模块基本教学",
- collapsed: true,
- items: [{ text: "todo", link: "/docs" }],
- },
- ],
- // socialLinks: [
- // { icon: 'github', link: 'https://github.com/vuejs/vitepress' }
- // ]
- },
- },
- "zh-HK": {
- label: "繁体中文",
- lang: "zh-HK",
- themeConfig: {
- logo: "/logo.png",
- siteTitle: false,
- // https://vitepress.dev/reference/default-theme-config
- // nav: [
- // { text: 'Home', link: '/' },
- // { text: 'Examples', link: '/markdown-examples' }
- // ],
- sidebar: [
- { text: "什麽是CocoBlockly X", link: "/zh-HK/docs" },
- { text: "常見問題解答", link: "/zh-HK/docs/faq" },
- {
- text: "開始使用CocoBlockly X",
- link: "/zh-HK/docs/start-using-cocoblockly-x",
- },
- {
- text: "電子模組基本教學",
- collapsed: true,
- items: [{ text: "todo", link: "/zh-HK/docs" }],
- },
- ],
- // socialLinks: [
- // { icon: 'github', link: 'https://github.com/vuejs/vitepress' }
- // ]
- },
- },
- },
- });
|