|
@@ -1,12 +1,17 @@
|
|
|
import { fileURLToPath, URL } from "node:url";
|
|
|
import { defineConfig } from "vitepress";
|
|
|
-import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite'
|
|
|
+import VueI18nPlugin from "@intlify/unplugin-vue-i18n/vite";
|
|
|
|
|
|
// https://vitepress.dev/reference/site-config
|
|
|
export default defineConfig({
|
|
|
title: "CocoBlockly帮助文档",
|
|
|
description: "Cococlass help documents",
|
|
|
srcDir: "pages",
|
|
|
+ // themeConfig: {
|
|
|
+ // search: {
|
|
|
+ // provider: "local",
|
|
|
+ // },
|
|
|
+ // },
|
|
|
|
|
|
vite: {
|
|
|
publicDir: "../public",
|
|
@@ -26,7 +31,10 @@ export default defineConfig({
|
|
|
new URL("../components/CustomNavBar.vue", import.meta.url)
|
|
|
),
|
|
|
},
|
|
|
- { find: '@/', replacement: fileURLToPath(new URL('../', import.meta.url)) },
|
|
|
+ {
|
|
|
+ find: "@/",
|
|
|
+ replacement: fileURLToPath(new URL("../", import.meta.url)),
|
|
|
+ },
|
|
|
],
|
|
|
},
|
|
|
},
|
|
@@ -38,9 +46,6 @@ export default defineConfig({
|
|
|
logo: "/logo.png",
|
|
|
siteTitle: false,
|
|
|
// https://vitepress.dev/reference/default-theme-config
|
|
|
- // search: {
|
|
|
- // provider: 'local'
|
|
|
- // },
|
|
|
// nav: [
|
|
|
// { text: 'Home', link: '/' },
|
|
|
// { text: 'Examples', link: '/markdown-examples' }
|
|
@@ -54,9 +59,8 @@ export default defineConfig({
|
|
|
},
|
|
|
{
|
|
|
text: "电子模块基本教学",
|
|
|
- items: [
|
|
|
- { text: "todo", link: "/docs" },
|
|
|
- ],
|
|
|
+ collapsed: true,
|
|
|
+ items: [{ text: "todo", link: "/docs" }],
|
|
|
},
|
|
|
],
|
|
|
// socialLinks: [
|
|
@@ -71,9 +75,6 @@ export default defineConfig({
|
|
|
logo: "/logo.png",
|
|
|
siteTitle: false,
|
|
|
// https://vitepress.dev/reference/default-theme-config
|
|
|
- // search: {
|
|
|
- // provider: 'local'
|
|
|
- // },
|
|
|
// nav: [
|
|
|
// { text: 'Home', link: '/' },
|
|
|
// { text: 'Examples', link: '/markdown-examples' }
|
|
@@ -87,9 +88,8 @@ export default defineConfig({
|
|
|
},
|
|
|
{
|
|
|
text: "電子模組基本教學",
|
|
|
- items: [
|
|
|
- { text: "todo", link: "/zh-HK/docs" },
|
|
|
- ],
|
|
|
+ collapsed: true,
|
|
|
+ items: [{ text: "todo", link: "/zh-HK/docs" }],
|
|
|
},
|
|
|
],
|
|
|
// socialLinks: [
|